Leaked source code of windows server 2003
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.

36 lines
1.3 KiB

  1. @ECHO OFF
  2. REM *** SNA40SRV.CMD - Batch file to register SNA Server 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 Server 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. Register %SNAROOT%\SNASERVR.EXE /SYSTEM >Nul: 2>&1
  26. Register %SNAROOT%\SNASII.DLL /SYSTEM >Nul: 2>&1
  27. Register %SNAROOT%\SNALINK.DLL /SYSTEM >Nul: 2>&1
  28. Echo SNA Server 4.0 Multi-user Application Tuning Complete
  29. Pause
  30. :Cont2