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.

28 lines
975 B

  1. @echo off
  2. echo Installing Client-based Network Administration Tools...
  3. copy *.exe %systemroot%\system32\*.* > nul:
  4. if errorlevel 1 goto Error_COPY
  5. copy *.dll %systemroot%\system32\*.* > nul:
  6. if errorlevel 1 goto Error_COPY
  7. copy *.hlp %systemroot%\system32\*.* > nul:
  8. if errorlevel 1 goto Error_COPY
  9. copy *.ind %systemroot%\system32\*.* > nul:
  10. if errorlevel 1 goto Error_COPY
  11. goto Exit_SUCCESS
  12. :Error_COPY
  13. echo
  14. echo The Client-based Network Administration Tools were not correctly
  15. echo installed on the system. Check for sufficient disk space and correct
  16. echo access permissions on the Windows NT system drive, then retry the
  17. echo installation. Setup must be run from the directory where the
  18. echo Administration Tools reside.
  19. echo
  20. goto Exit_point
  21. :Exit_SUCCESS
  22. echo
  23. echo The Client-based Network Administration Tools have been correctly installed.
  24. echo You can create Program Manager icons for the following tools:
  25. dir /b /l *.exe
  26. echo
  27. goto Exit_point
  28. :Exit_point