1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| ipconfig /all ipconfig /release ipconfig /renew whoami whoami /all systeminfo tasklist /svc taskkill /im 进程名称(cmd) taskkill /pid[进程码] -t(结束该进程) -f(强制结束该进程及所有子进程) wmic qfe get hotfixid wmic qfe list full /format:htable > hotfixes.htm wmic qfe ping 主机名 net start net user net localgroup administrators net user net session net share wmic share get name,path wmic nteventlog get path,filename,writeable net use \\IP\ipc$ password /user:username net use z:\\192.168.1.1 net time \\172.16.16.2 at \\172.16.16.2 13:50 c:\windows\2009.exe netstat -ano netstat -an | find "3389" net accounts nbstat -A ip net view echo %PROCESSOR_ARCHITECTURE% set net start wmic service list brief
|