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

@ECHO OFF
REM *** SNA40CLI.CMD - Batch file to register SNA Client 4.0 ***
Rem #########################################################################
If Not "A%SNAROOT%A" == "AA" Goto Cont1
Echo.
Echo Unable to complete Multi-user Application Tuning because the
Echo SNAROOT environment variable isn't set. This could occur if
Echo the command shell being used to run this script was opened
Echo before SNA Client 4.0 was installed.
Echo.
Pause
Goto Cont2
Rem #########################################################################
:Cont1
Register %SNAROOT%\SNADMOD.DLL /SYSTEM >Nul: 2>&1
Register %SNAROOT%\SNAMANAG.DLL /SYSTEM >Nul: 2>&1
Register %SNAROOT%\WAPPC32.DLL /SYSTEM >Nul: 2>&1
Register %SNAROOT%\DBGTRACE.DLL /SYSTEM >Nul: 2>&1
Register %SNAROOT%\MNGBASE.DLL /SYSTEM >Nul: 2>&1
Register %SNAROOT%\SNATRC.DLL /SYSTEM >Nul: 2>&1
Register %SNAROOT%\SNALM.DLL /SYSTEM >Nul: 2>&1
Register %SNAROOT%\SNANW.DLL /SYSTEM >Nul: 2>&1
Register %SNAROOT%\SNAIP.DLL /SYSTEM >Nul: 2>&1
Register %SNAROOT%\SNABASE.EXE /SYSTEM >Nul: 2>&1
Echo SNA Server 4.0 Multi-user Application Tuning Complete
Pause
:Cont2