List files and folders in the current directory.
Filesdir
Developer
Search common CMD and PowerShell commands with descriptions and copy-ready examples.
List files and folders in the current directory.
Filesdir
Change the current directory.
Filescd C:\Users
Copy files from one path to another.
Filescopy source.txt backup.txt
Move or rename files and folders.
Filesmove app.log logs\app.log
Delete one or more files.
Filesdel temp.txt
Create a directory.
Filesmkdir reports
Print a text file to the terminal.
Filestype package.json
Search for text in files.
Searchfindstr /s /i "error" *.log
Display network adapter configuration.
Networkipconfig /all
Test connectivity to a host.
Networkping example.com
Trace the route to a network host.
Networktracert example.com
Show active connections and listening ports.
Networknetstat -ano
List running processes.
Processtasklist
Stop a process by PID or image name.
Processtaskkill /PID 1234 /F
List running processes in PowerShell.
PowerShellGet-Process
List files and folders in PowerShell.
PowerShellGet-ChildItem -Force
Clear the terminal screen.
Consolecls
Print text or show environment values.
Consoleecho %PATH%
Display or set environment variables in CMD.
Environmentset NODE_ENV=production
Find the location of an executable.
Searchwhere node
Display a directory tree.
Filestree /F
View or change file attributes.
Filesattrib +h secret.txt
Check a disk and display status information.
Diskchkdsk C:
Manage disks, partitions, and volumes.
Diskdiskpart
Scan and repair protected system files.
Systemsfc /scannow
Display detailed computer and operating system information.
Systemsysteminfo
Shut down, restart, or log off the computer.
Systemshutdown /r /t 0
Query, create, or control Windows services.
Servicesc query wuauserv
Manage users, shares, services, and network resources.
Networknet user
Query DNS records.
Networknslookup example.com
View or change network routing tables.
Networkroute print
List Windows services in PowerShell.
PowerShellGet-Service
Change directory in PowerShell.
PowerShellSet-Location C:\Projects
Search text using PowerShell.
PowerShellSelect-String -Path *.log -Pattern error
Make web requests from PowerShell.
PowerShellInvoke-WebRequest https://example.com
FAQ
It helps you quickly find common Windows terminal commands, understand what they do, and copy example usage.
Yes. Use the category controls to narrow results by files, network, process, system, and other command groups.
Yes. Each command includes a copy button with a short copied confirmation message.
Related tools