home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / nn30d.exe / PACKAGES / O2CUPDTD.NNA < prev    next >
Text File  |  1994-08-22  |  866b  |  33 lines

  1. rem Version 3.0d 8/22/94
  2. rem OS/2 Client Update Script 
  3. rem This script will determine the current location of the OS/2 
  4. rem scheduler and replace it with the new version distributed 
  5. rem to the client. 
  6. rem  
  7. CALL NNPATH SCHED-PM.EXE  C: D: E: /X:%RPATH%\
  8. rem If the file is not found, exit with error. 
  9. IF ERRORLEVEL 1 GOTO NOT_FOUND
  10. rem Otherwise, copy it. 
  11. COPY %RPATH%\SCHED-PM.NEW %LPATH%\SCHED-PM.EXE
  12. rem If the copy fails, exit with error. 
  13. IF ERRORLEVEL 1 GOTO NO_COPY
  14. rem  
  15. rem Update of SCHED-PM.EXE successful. 
  16. rem Delete the now unnecessary files. 
  17. rem  
  18. DEL %RPATH%\SCHED-PM.NEW
  19. DEL %RPATH%\OCUPDT01.NNA
  20. rem Indicate success. 
  21. NNSETRC 0
  22. GOTO END
  23. rem  
  24. :NOT_FOUND
  25. ECHO Unable to locate OS/2 scheduler.
  26. rem Indicate failure. 
  27. NNSETRC 1
  28. GOTO END
  29. :NO_COPY
  30. ECHO Copy of SCHED-PM.EXE failed.
  31. rem Indicate failure. 
  32. NNSETRC 2
  33.