windows xp tips 及工具

  
  
  
  
  1. #firewall 
  2. netsh firewall show opmode 
  3. netsh firewall set opmode disable 
  4.  
  5. sc queryex TermService 
  6. sc config TermService startdemand 
  7. sc start TermService 
  8.  
  9. ### 
  10. #tasklist /svc #find the PID(svchost.exe of terminal service) 
  11. #taskkill /f /pid xxx 
  12.  
  13. psexec \\machinename reg add "hklm\system\currentcontrolset\control\terminal server" /f /v fDenyTSConnections /t REG_DWORD /d 0 
  14.  
  15. ### 
  16. netsh interface ip set address name="本地�B接" source=static addr=10.1.1.1 mask=255.0.0.0 gateway=10.1.1.254 gwmetric=1 
  17. netsh interface ip set dns name="本地�B接" source=static addr=8.8.8.8 register=PRIMARY 
  18. netsh interface ip add dns name="本地�B接" addr=8.8.8.4 index=2 
  19.  
  20. ### netsh interface ip set address name="本地�B接" static 192.168.21.2 255.255.255.0 192.168.21.1 1 
  21. netsh interface ip set address name="本地�B接" source=dhcp 
  22. netsh interface ip set address name="本地�B接" source=dhcp register=PRIMARY 
  23. netsh interface ip set dns name="本地�B接" source=dhcp 
  24.  
  25.  
  26. ### 
  27. devcon find * | find /i "net" 
  28. devcon enable PCI\VEN_1022 

 

本文出自 “漫步Hacking时空” 博客,谢绝转载!

你可能感兴趣的:(职场,tips,休闲)