home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / W2KPRK.iso / scripts.cab / xinst.cmd < prev    next >
OS/2 REXX Batch file  |  1999-11-04  |  1KB  |  38 lines

  1. @echo off
  2. rem
  3. rem  XINST.CMD
  4. rem
  5. rem  Sample batchfile demonstrating how the KiXtart RPC service can be
  6. rem  installed on a remote system.
  7. rem
  8. rem  Note :  This code sample is provided for demonstration purposes only.
  9. rem          Microsoft makes no warranty, either express or implied,
  10. rem          as to its usability in any given situation.
  11. rem
  12. IF "%1" == "" GOTO ERR0
  13. ECHO Please read the installation instructions of KXRPC before running this batch.
  14. ECHO Press Enter to install KXRPC on %1...
  15. MD \\%1\C$\KIXTART
  16. IF ERRORLEVEL 1 GOTO ERR1
  17. COPY KXRPC.EXE \\%1\C$\KIXTART
  18. IF ERRORLEVEL 1 GOTO ERR2
  19. XNET INSTALL \\%1\KXRPC /b:C:\KIXTART\KXRPC.EXE /n:"KiXtart RPC Service" /d:RPCSS /s:AUTO
  20. ECHO KXRPC service successfully installed on %1!
  21. GOTO END
  22.  
  23. :ERR0
  24. ECHO XINST   : Batchfile to install KiXtart RPC service on a remote server.
  25. ECHO Usage   : XINST (name of logon server to install KXRPC on)
  26. ECHO Example : XINST MYSERVER
  27. GOTO END
  28.  
  29. :ERR1
  30. ECHO Failed to create directory on %1!
  31. GOTO END
  32.  
  33. :ERR2
  34. ECHO Failed to copy KXRPC.EXE to directory C:\KIXTART on %1!
  35. GOTO END
  36.  
  37. :END
  38.