NetworkInfo | Get information about your network, including security settings. Key content is the Wi-Fi password. | NETSH WLAN SHOW PROFILE "yourWifiName" KEY=CLEAR | NETSH WLAN SHOW PROFILE "eduroam" KEY=CLEAR |
SystemInfo | Display detailed information about your system. | SYSTEMINFO | SYSTEMINFO |
IPConfig | Display IP configuration for all network interfaces. | IPCONFIG | IPCONFIG |
TaskList | Display a list of currently running processes. | TASKLIST | TASKLIST |
Ping | Check the network connectivity between two devices. | PING <hostname or IP> | PING google.com |
Tracert | Trace the route that packets take to reach a destination. | TRACERT <hostname or IP> | TRACERT google.com |
Netstat | Display active network connections and listening ports. | NETSTAT | NETSTAT -a |
System File Checker | Scan and repair corrupted system files. | SFC /SCANNOW | SFC /SCANNOW |
Disk Cleanup | Free up space on your computer by cleaning unnecessary files. | CLEANMGR | CLEANMGR /D C |
TaskKill | Terminate a running process or application. | TASKKILL /F /IM <process_name> | TASKKILL /F /IM notepad.exe |
CD | Change the current working directory. | CD <directory_path> | CD C:\Users |
MKDIR | Create a new directory (folder). | MKDIR <directory_name> | MKDIR NewFolder |
RMDIR | Remove a directory (folder). | RMDIR /S /Q <directory_name> | RMDIR /S /Q OldFolder |
COPY | Copy files or directories from one location to another. | COPY <source> <destination> | COPY file.txt C:\Backup |
DEL | Delete one or more files. | DEL <file_name> | DEL unwanted_file.txt |
REN | Rename a file or directory. | REN <old_name> <new_name> | REN file.txt newfile.txt |
MOVE | Move files or directories from one location to another. | MOVE <source> <destination> | MOVE document.txt C:\Documents |
CLS | Clear the CMD window. | CLS | CLS |
EXIT | Close the CMD window. | EXIT | EXIT |