install.cmd
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. @ECHO OFF
  2. REM
  3. IF NOT /%OS%/ == /Windows_NT/ GOTO NOT_NT
  4. IF /%SystemDrive%/ == // GOTO NOT_SystemDrive
  5. IF /%SystemRoot%/ == // GOTO NOT_SystemRoot
  6. REM
  7. REM
  8. IF NOT EXIST 5Mrtg.Exe GOTO NOT_5Mrtg
  9. IF NOT EXIST 5Mrtg.Reg GOTO NOT_Reg
  10. REM
  11. REM
  12. REM SystemDrive=C:
  13. REM SystemRoot=C:WINNT
  14. REM
  15. START 5mrtg.Reg
  16. REM
  17. COPY /Y 5mrtg.Exe %SystemRoot%System32
  18. %SystemDrive%
  19. CD %SystemRoot%System32
  20. 5mrtg.Exe -install
  21. NET START mrtg5
  22. CD 
  23. REM
  24. GOTO FIN
  25. REM
  26. REM
  27. :NOT_NT
  28. ECHO This is NOT Windows NT
  29. GOTO FIN
  30. REM
  31. :NOT_SystemDrive
  32. ECHO SystemDrive NOT defined
  33. GOTO FIN
  34. REM
  35. :NOT_SystemRoot
  36. ECHO SystemRoot NOT defined
  37. GOTO FIN
  38. REM
  39. :NOT_5Mrtg
  40. ECHO 5mrtg.exe NOT found
  41. GOTO FIN
  42. REM
  43. :NOT_Reg
  44. ECHO 5mrtg.Reg NOT found
  45. GOTO FIN
  46. REM
  47. :FIN
  48. REM -=EOF=-