A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 0

SigCheck – Windows CMD Command

Display file version number, VirusTotal status, timestamp information, and digital signature details, including certificate chains. Syntax sigcheck [-a][-h][-i][-e][-l][-n][[-s]|[-c|-ct]|[-m]][-q][-r][-u][-vt] [-v[r][s]][-f catalog_file] file_or_directory sigcheck -d [-c|-ct] file_or_directory sigcheck -o [-vt][-v[r]] sigcheck_csv_file sigcheck -t[u][v] [-i] [-c|-ct] <certificate_store_name | *...

A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 1

SHUTDOWN.exe – Windows CMD Command

Shutdown the computer Syntax SHUTDOWN [shutdown_options] [/m \\Computer] [other_options] shutdown_options: /i Display the GUI (must be the first option) /l Log off. This cannot be used with /m or /d option. /s Shutdown. /sg...

A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 0

SHORTCUT.exe – Windows CMD Command

Create a windows shortcut (.LNK file) This utility works under Windows 7 but fails under Windows 10. A good alternative is shortcut.exe from Optimum X. Syntax SHORTCUT [options] Key Source options -t target : The...

A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 1

SHIFT – Windows CMD Command

Change the position of command line arguments passed to a batch file. Syntax SHIFT [/n] Key /n Start at the nth argument, where n is between zero and eight. You can get the value...

A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 4

ShellRunas – Windows CMD Command

Launch a program under a different user account (typically an Admin level account). Syntax shellrunas [/netonly] program arguments shellrunas /reg [/quiet] shellrunas /regnetonly [/quiet] shellrunas unreg Key program Run program with specified credentials and...

A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 1

Share.vbs – Windows CMD Command

List or edit a file share or print share (on any computer) Although missing from recent Resource Kits, this VBS script does still work under recent versions of Windows. The preferred method for creating...

A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 1

SFC.exe – Windows CMD Command

System File Checker Syntax Sfc [/Scannow] [/Scanonce] [/Scanboot] [/Revert] [/Purgecache] [/Cachesize=x] Key /Scannow Scan all protected system files immediately and replace incorrect versions with correct Microsoft versions. May require access to the Windows installation...

A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 0

SETX.exe – Windows CMD Command

Set environment variables permanently, SETX can be used to set Environment Variables for the machine (HKLM) or currently logged on user (HKCU): Syntax SETX [/s Computer [Credentials]] Variable Value [/m] SETX [/s Computer [Credentials]]...

A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 1

SETSPN.exe – Windows CMD Command

Read, modify, or delete the Service Principal Names (SPN) for an Active Directory service account. Syntax SETSPN [modifiers switch] [accountname] Key accountname The name or domain\name of the target computer or user account Edit...

A-Z-List-Of-Windows-CMD-Commands-Also-Included-CMD-Commands 2

SETLOCAL – Windows CMD Command

Set options to control the visibility of environment variables in a batch file. Syntax SETLOCAL SETLOCAL {EnableDelayedExpansion | DisableDelayedExpansion} {EnableExtensions | DisableExtensions} Key EnableDelayedExpansion Expand variables at execution time rather than at parse time....