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.

33 lines
1.1 KiB

  1. @ECHO OFF
  2. REM *** SNA40CLI.CMD - Batch file to register SNA Client 4.0 ***
  3. Rem #########################################################################
  4. If Not "A%SNAROOT%A" == "AA" Goto Cont1
  5. Echo.
  6. Echo Unable to complete Multi-user Application Tuning because the
  7. Echo SNAROOT environment variable isn't set. This could occur if
  8. Echo the command shell being used to run this script was opened
  9. Echo before SNA Client 4.0 was installed.
  10. Echo.
  11. Pause
  12. Goto Cont2
  13. Rem #########################################################################
  14. :Cont1
  15. Register %SNAROOT%\SNADMOD.DLL /SYSTEM >Nul: 2>&1
  16. Register %SNAROOT%\SNAMANAG.DLL /SYSTEM >Nul: 2>&1
  17. Register %SNAROOT%\WAPPC32.DLL /SYSTEM >Nul: 2>&1
  18. Register %SNAROOT%\DBGTRACE.DLL /SYSTEM >Nul: 2>&1
  19. Register %SNAROOT%\MNGBASE.DLL /SYSTEM >Nul: 2>&1
  20. Register %SNAROOT%\SNATRC.DLL /SYSTEM >Nul: 2>&1
  21. Register %SNAROOT%\SNALM.DLL /SYSTEM >Nul: 2>&1
  22. Register %SNAROOT%\SNANW.DLL /SYSTEM >Nul: 2>&1
  23. Register %SNAROOT%\SNAIP.DLL /SYSTEM >Nul: 2>&1
  24. Register %SNAROOT%\SNABASE.EXE /SYSTEM >Nul: 2>&1
  25. Echo SNA Server 4.0 Multi-user Application Tuning Complete
  26. Pause
  27. :Cont2