Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
753 B

  1. echo off
  2. if "%1"=="" goto error_msg
  3. set SHAREPOINT=%1
  4. set DESTDRIVE=c:
  5. set DESTDIR=progra~1\salem
  6. :Get_Dest_Drive
  7. if "%2"=="" goto Copy_Files
  8. set DESTDRIVE=%2
  9. :Copy_Files
  10. set DEST=%DESTDRIVE%\%DESTDIR%
  11. mkdir %DEST%
  12. net use z: %SHAREPOINT%
  13. copy z:\as\cpi32.9x\obj\i386\rdas32.* %DEST%
  14. copy z:\as\as16\obj\i386\rdas16.* %DEST%
  15. copy z:\extern\i386\msvcrtd.dll %DEST%
  16. copy z:\samples\service\obj\i386\service.* %DEST%
  17. copy z:\samples\server\obj\i386\server.* %DEST%
  18. copy z:\samples\client\obj\i386\client.* %DEST%
  19. copy z:\t120\mst120\obj\i386\rdcall.* %DEST%
  20. copy z:\samples\rdcert\obj\i386\rdcert.* %DEST%
  21. copy z:\cert\obj\i386\rdmkcert.* %DEST%
  22. net use z: /d
  23. goto exit
  24. :error_msg
  25. echo usage: setup9x sharepoint [destination drive]
  26. goto exit
  27. :exit