1.2 - Windows Command Line Tools Flashcards
Privileges
Not all users can run all commands
– Some tasks are for the administrator only
Command line troubleshooting
Use “help” if you’re not sure
> help dir
[command] /?
dir
– List files and directories
cd / chdir
– Change working directory
– Use backslash \ to specify volume or folder name
..
– Two dots/periods
– The folder above the current folder
md / mkdir
– Make a directory
rd / rmdir
Remove directory
hostname
- View the name of the device
– This is very useful when there are 10 different terminal - screen tabs in use
format
- Formats a disk for use with Windows
- BE CAREFUL - YOU CAN LOSE DATA
copy (/v, /y)
Copy files from one location to another
/v - Verifies that new files are written correctly /y - Suppresses prompting to confirm you want to overwrite an existing destination file
xcopy
- Copies files and directory trees
xcopy /s Documents m:\backups
Robust Copy
* robocopy
– A better Xcopy
– Included with Windows 10 and 11
Group Policy
Manage computers in an Active Directory Domain – Group Policy is usually updated at login
gpupdate
Force a Group Policy update
– gpupdate /target:{computer|user} /force – gpupdate /target:user /force
gpresult
Verify policy settings for a computer or user
– gpresult /r
– gpresult /user sgc/professor /v
shutdown
- Shutdown a computer – And optionally restart
shutdown /s /t nn
– Wait nn seconds, then shutdown
*shutdown /r /t nn
– Shutdown and restart after nn seconds
shutdown /a
– Abort the countdown!
sfc
System File Checker
– Scan integrity of all protected system files
chkdsk /f
– Fixes logical file system errors on the disk
DiskPart
start the DiskPart command interpreter
winver
View the About Windows dialog – A quick check
* Useful when troubleshooting
– Are you running the latest version?
ipconfig
Most of your troubleshooting starts with your IP address – Ping your local router/gateway
Determine TCP/IP and network adapter information – And some additional IP details
View additional configuration details – DNS servers, DHCP server, etc.
ping
Test reachability
– Determine round-trip time
– Uses Internet Control Message Protocol (ICMP)
* One of your primary troubleshooting tools – Can you ping the host?
netstat
Network statistics
– Many different operating systems
nslookup
Lookup information from DNS servers
– Canonical names, IP addresses, cache timers, etc.
* Lookup names and IP addresses – Many different options
net
Windows network commands
* View network resources
Map a network share to a drive letter
View user account information and reset passwords
tracert
Determine the route a packet takes to a destination – Map the entire path
pathping
Combine ping and traceroute
– Included with Windows NT and later
* First phase runs a traceroute – Build a map
* Second phase
– Measure round trip time and packet loss at each hop