Control panel tool Command
2021
msinfo32 => System Information dxdiag => DirectX Diagnostic Tool ncpa.cpl => Network Conection inetcpl.cpl => Internet Properties main.cpl => Mouse Properties sysdm.cpl => System Properties mmsys.cpl => Sound Properties desk.cpl => Display Properties appwiz.cpl => Add/Remove Programs
Quản lý tệp và thư mục
2021
// Common /P : Hiển thị thông tin trước khi xóa /F : Xóa các thuộc tính read-only /S : Xóa trong tất cả các thư mục /Q : Xóa không cần hỏi /A[[:]attributes] : xóa theo thuộc tính attributes : R: Read-only, S: System, H: Hidden // Tạo một thư mục $ mkdir <folder_name> or $ md <folder_name> // Xoá thư mục $ rd <folder_name> // Xóa thư mục không trống $ rd /s <folder_name> // Tạo file $ fsutil file createnew filename.txt 1024 or $ type nul > filename.txt // Mở file và thêm contetn cho file $ type nul > demo.txt
// Xoá file $ del <file_name> // Đổi tên file $ ren old_name new_name // Hiển thị các thư mục bắt đầu chứ cái $ dir a* // Hiển thị tree thư mục $ tree // Sao chép $ copy <path_from> <path_to> $ copy <file_name> <path_from> <path_to> // Sao chép thư mục bao gồm thư mục trống $ xcopy src_file des_file /e /i // Danh sách các file và folder $ call dir // Hiển thị đường dẫn hiện tại $ chdir
Các lệnh network trên windows
2021
// Hiển thị IP
$ ipconfig
$ curl ifconfig.me
// Hiển thị IP public
$ nslookup myip.opendns.com resolver1.opendns.com
// Kiểm tra cổng kết nối đối với telnet
$ telnet <address> <port number>
Ứng dụng và Quy trình
2021
start explorer /c => mở vào ổ nào
File Explorer - explorer
Calculator - calc
Notepad - notepad => notepad myfile.txt
Character Map - charmap
Paint - mspaint
Command Prompt (new window) - cmd
Windows Media Player - wmplayer
Task Manager - taskmgr
Network
2021
$ telnet [address] [port number] $ telnet 127.0.0.1 80 $ ipconfig Verifies IP-level connectivity to another TCP/IP computer ping HOSTNAME ping IP_ADDRESS ping -t HOST ← continue sending Echo Request messages to the destination until interrupted. ← To interrupt and quit ping, press CTRL+C. Check Port connection Test-NetConnection <HOST> -Port <PORT> Test-NetConnection 192.168.0.100 -Port 22 Displays all current TCP/IP network configuration values. ipconfig ipconfig /all ← Display full configuration information. Display route details netstat -rn route print Add a route route add 192.168.0.0 mask 255.255.255.0 192.168.10.1 ← network route add 192.168.0.5 mask 255.255.255.255 192.168.100.1 ← host route add -p 192.168.0.0 mask 255.255.255.0 192.168.10.1 ← “-p” Create a persistent route If you want to contain rouring after reboot the system, you must add “-p” option. Delete the route route delete 192.168.0.0 mask 255.255.0.0 ← network route delete 192.168.20.1 mask 255.255.255.255 ← host Change th route route change 157.0.0.0 mask 255.0.0.0 157.55.80.5 Display hostname from IP nbtstat -a IP_ADDRESS
System
2021
shutdown
shutdown /s /t 10
/s = Shutdown the computer.
/t xxx = Set the time-out period before shutdown to xxx seconds.
shutdown /r /t 10
/r = Full shutdown and restart the computer.
Displays environment variables.
set ← cmd
Get-ChildItem env: ← powershell
echo %Path% ← cmd
Get-ChildItem env:Path ← powershell
path displays the current command path.
path
Sets the command path in the PATH environment variable
path %PATH%;C:\test\bin
Displays detailed configuration information about a computer and its operating system
systeminfo
systeminfo /s test-server
systeminfo /s test-server /u testdomain.local\USERNAME
Displays a list of currently running processes
tasklist
tasklist /s SERVER
tasklist /s SERVER /u TESTDOMAIN\USER01 /p P@ssw0rd
Change the character code
chcp 437 ← English
chcp 932 ← Japanese
Software
2021
Tạo kết nối đến máy chủ đầu cuối hoặc máy tính từ xa khác
mstsc
mstsc /? ← Displays help at the command prompt.
mstsc /admin ← Connects you to a session for administering the server.
mstsc /f ← fullscreen
mstsc /w:1600 /h:1200
mstsc /v:192.168.0.10
mstsc /v:192.168.0.10 /w:1600 /h:1200
Start Explorer
explorer
explorer . ← start Explorer with current folder
Start Calcurator
calc
Microsoft Management Console(mmc)
mmc
DNS
2021
Hiển thị thông tin mà bạn có thể sử dụng để chẩn đoán cơ sở hạ tầng DNS.
nslookup
nslookup IPADDRESS DNSSERVER
nslookup HOSTNAME DNSSERVER
nslookup -type=soa HOSTNAME
nslookup -type=any HOSTNAME DNSSERVER
Xóa và đặt lại nội dung của bộ đệm trình phân giải máy khách DNS.
ipconfig /flushdns
MAC address
2021
Returns the MAC address
getmac
getmac /s srvmain
getmac /s srvmain /u maindom\hiropln /p p@ssW23
Hiển thị các mục trong bộ đệm ARP
arp -a
Xóa một mục trong bộ đệm ARP với một IP cụ thể
arp -d
arp -d INETADDR
Key name
2021
taskmg
0 nhận xét:
Post a Comment