cmd komandos.
1 Kompiuterio IP adresas ipconfig
2 ipconfig /all
3 ipconfig /all | findstr DNS
4 Sukuria kompiuteriui naują IP adresą. Releasing your IP frees the address from your router and drops your internet connection. ipconfig /release
5 Renewing your IP either reassigns your current address (if it is still available), or assigns a new address to your computer, allowing you to reconnect to the internet. ipconfig /renew
6 ipconfig /displaydns
7 Nukopijuoja komandos užklausą. ipconfig /displaydns | clip
8 This technique is commonly used to obtain account credentials or penetrate secure corporate networks. Flushing the DNS cache clears out entries that may have been tampered with. ipconfig /flushdns
9 The name server lookup (nslookup) command-line tool finds the internet protocol (IP) address or domain name system (DNS) record for a specific hostname. This command also supports reverse DNS lookups by inputting the IP addresses of the domains to be looked up. nslookup networkchuck.com
nslookup networkchuck.coffee 8.8.8.8
nslookup -type=mx networkchuck.com
nslookup -type=txt networkchuck.com
nslookup -type=ptr networkchuck.com
10 Išvalo ekraną. cls
11 MAC adresas. getmac /v
12 Is used to analyzes the system for common energy-efficiency and battery-life problems. powercfg /energy
13 Generates a report of battery usage characteristics over the lifetime of the system. powercfg /batteryreport
14 Allows you to view or change the file type associations in your system.
Parenkame programą su kuria būtų naudojami failai.
assoc
assoc .mp4=VLC.vlc
15 Fixes any structural issues with the file system and directory, correcting inconsistencies between the two. chkdsk /f
16 Attempts to repair sectors on your hard drive so that they're readable within the file system. It's a deeper check. This command also runs the chkdsk /f functionality by default. chkdsk /r
17 Attempts to repair sectors on your hard drive so that they're readable within the file system. It's a deeper check. This command also runs the chkdsk /f functionality by default. sfc /scannow
18 This is a quick scan and will determine if the image is repairable. DISM /Online /Cleanup-Image /CheckHealth
19 This will check if there are any corruptions detected. Like the check health command, this will not repair any errors. DISM /Online /Cleanup-Image /ScanHealth
20 The Restorehealth switch in a DISM command tells the tool to scan the running operating system for corrupt files and attempt to repair them automatically. DISM /Online /Cleanup-Image /RestoreHealth