Home Course Advance Excel Ethical Hacking Anonphisher TBomb Virus-Builder Seeker Linux Basic Tools Download Links CiLocks Fun Commond Cyber Security Advance Excel CMD Commond Excel Shortcut Excel Formating Shortcut Keys MS-Office Free Activation Commond Windows Free Activation Commond Windows Shortcut keys

Navigation and File Management

CommandDescription
cdChange directory
cd ..Move to parent directory
cd ~Move to root directory
dirList files and directories
mkdirCreate a new directory
rmdirRemove a directory
copyCopy files
moveMove files
delDelete files
renameRename files

System and Network

CommandDescription
ipconfigDisplay network configuration
pingTest network connectivity
tracertDisplay network route
netstatDisplay network statistics
tasklistList running processes
taskkillKill a process
systeminfoDisplay system information

File and Directory Operations

CommandDescription
typeDisplay file contents
echoOutput text to screen
clsClear screen
exitClose CMD window
attribDisplay or modify file attributes

User and Security

CommandDescription
net userList user accounts
net localgroupList local groups
runasRun a command as another user
icaclsDisplay or modify file permissions

Batch Files and Scripting

CommandDescription
@echo offTurn off command echoing
pausePause batch file execution
gotoJump to a label in a batch file
setSet environment variables

Creating a Bootable Pendrive using CMD

CommandDescription
diskpartOpen DiskPart utility
list diskList available disks
select disk XSelect the pendrive disk (replace X with the disk number)
cleanClean the disk
create partition primaryCreate a primary partition
select partition 1Select the newly created partition
activeMark the partition as active
format fs=fat32 quickFormat the partition as FAT32
assignAssign a drive letter to the pendrive
exitExit DiskPart utility
xcopy /s /e /f <source> <destination>Copy bootable files to the pendrive
Note: Replace X with the disk number of the pendrive, and <source>, <destination> with actual paths.

Example:

If your pendrive is disk 2 and the bootable files are in C:\bootfiles and drive letter is E:, use:

diskpart → list disk → select disk 2 → clean → create partition primary → select partition 1 → active → format fs=fat32 quick → assign → exit

Then:
xcopy /s /e /f C:\bootfiles\* E:\