home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / W2KPRK.iso / netmgmt.cab / rshsvc.bat < prev    next >
DOS Batch File  |  1999-11-04  |  784b  |  48 lines

  1.  
  2. @ECHO OFF
  3. REM Install.bat file for rshsvc
  4.  
  5. REM %1 directory must have rshsetup.exe,rshsvc.exe and rshsvc.dll
  6. REM Please make sure that you give absolute path for %1
  7.  
  8.  
  9. if not exist %1\rshsvc.exe goto ERROR1
  10.  
  11. if not exist %1\rshsetup.exe goto ERROR2
  12.  
  13. if not exist %1\rshsvc.dll goto ERROR3
  14.  
  15. pushd %SystemRoot%\system32
  16.  
  17. copy %1\rshsvc.exe
  18.  
  19. copy %1\rshsetup.exe
  20.  
  21. copy %1\rshsvc.dll
  22.  
  23. rshsetup %SystemRoot%\system32\rshsvc.exe %SystemRoot%\system32\rshsvc.dll
  24.  
  25. popd
  26.  
  27. ECHO Use "net start rshsvc" to start the service.
  28. GOTO END
  29.  
  30. :ERROR1
  31.  
  32. ECHO rshsvc.exe is not found in the %1 directory
  33. GOTO END
  34.  
  35. :ERROR2
  36.  
  37. ECHO rshsetup.exe is not found in the %1 directory
  38. GOTO END
  39.  
  40. :ERROR3
  41.  
  42. ECHO rshsvc.dll is not found in the %1 directory
  43.  
  44. :END
  45.  
  46. @ECHO ON
  47.  
  48.