basic commands

TitleDescriptionCommandExample Use
NetworkInfoGet information about your network, including security settings. Key content is the Wi-Fi password.NETSH WLAN SHOW PROFILE "yourWifiName" KEY=CLEARNETSH WLAN SHOW PROFILE "eduroam" KEY=CLEAR
SystemInfoDisplay detailed information about your system.SYSTEMINFOSYSTEMINFO
IPConfigDisplay IP configuration for all network interfaces.IPCONFIGIPCONFIG
TaskListDisplay a list of currently running processes.TASKLISTTASKLIST
PingCheck the network connectivity between two devices.PING <hostname or IP>PING google.com
TracertTrace the route that packets take to reach a destination.TRACERT <hostname or IP>TRACERT google.com
NetstatDisplay active network connections and listening ports.NETSTATNETSTAT -a
System File CheckerScan and repair corrupted system files.SFC /SCANNOWSFC /SCANNOW
Disk CleanupFree up space on your computer by cleaning unnecessary files.CLEANMGRCLEANMGR /D C
TaskKillTerminate a running process or application.TASKKILL /F /IM <process_name>TASKKILL /F /IM notepad.exe
CDChange the current working directory.CD <directory_path>CD C:\Users
MKDIRCreate a new directory (folder).MKDIR <directory_name>MKDIR NewFolder
RMDIRRemove a directory (folder).RMDIR /S /Q <directory_name>RMDIR /S /Q OldFolder
COPYCopy files or directories from one location to another.COPY <source> <destination>COPY file.txt C:\Backup
DELDelete one or more files.DEL <file_name>DEL unwanted_file.txt
RENRename a file or directory.REN <old_name> <new_name>REN file.txt newfile.txt
MOVEMove files or directories from one location to another.MOVE <source> <destination>MOVE document.txt C:\Documents
CLSClear the CMD window.CLSCLS
EXITClose the CMD window.EXITEXIT
TitleDescriptionCommandExample Use
MKLINKCreates a directory junction linking to the specified target path.MKLINK /D <link_name> <target_path>MKLINK /D MyLink C:\Path\To\Target
MKLINKCreates a hard link pointing to the specified target file.MKLINK /H <link_name> <target_path>MKLINK /H MyHardLink C:\Path\To\File
MKLINKCreates a directory junction linking to the specified target directory.MKLINK /J <link_name> <target_path>MKLINK /J MyJunction C:\Path\To\Directory

robocopy

TitleDescriptionCommandExample Use
RobocopyRobust file and directory copy tool with advanced options.ROBOCOPY <source> <destination> [file(s)] [options]ROBOCOPY C:\SourceFolder D:\Destination /E /COPYALL
/COPY:Copy file information specified by ./COPY:DATCopy data, attributes, and timestamps
/ECopy subdirectories, including empty ones./ECopy all subdirectories, including empty ones
/ZBUse restartable mode; if access denied, use backup mode./ZBRestartable mode with backup
/MIRMirror a directory tree (equivalent to /E plus /PURGE)./MIRMirror source to destination, purging extraneous files
/LOG:Output status to the log file (overwrite existing log)./LOG:C:\Log\RobocopyLog.txtLog output to specified file
/R:Number of retries on failed copies (default is 1 million)./R:3Retry failed copies up to 3 times
/W:Wait time between retries in seconds (default is 30 seconds)./W:5Wait 5 seconds between retries