101 lines
2.8 KiB
Batchfile
101 lines
2.8 KiB
Batchfile
|
@Echo Off
|
||
|
|
||
|
Rem #########################################################################
|
||
|
|
||
|
Rem
|
||
|
Rem Verify that %RootDrive% has been configured and set it for this script.
|
||
|
Rem
|
||
|
|
||
|
Call "%SystemRoot%\Application Compatibility Scripts\ChkRoot.Cmd"
|
||
|
If "%_CHKROOT%" == "FAIL" Goto Done
|
||
|
Call "%SystemRoot%\Application Compatibility Scripts\SetPaths.Cmd"
|
||
|
If "%_SETPATHS%" == "FAIL" Goto Done
|
||
|
|
||
|
Rem #########################################################################
|
||
|
|
||
|
..\ACRegL "%Temp%\PB6.Cmd" PB6INST "HKCU\Software\ODBC\ODBC.INI\Powersoft Demo DB V6" "DataBaseFile" "STRIPCHAR\1"
|
||
|
If Not ErrorLevel 1 Goto Cont0
|
||
|
Echo.
|
||
|
Echo Unable to retrieve PowerBuilder 6.0 installation location from the registry.
|
||
|
Echo Verify that PowerBuilder 6.0 has already been installed and run this script
|
||
|
Echo again.
|
||
|
Echo.
|
||
|
Pause
|
||
|
Goto Done
|
||
|
|
||
|
:Cont0
|
||
|
Call "%Temp%\PB6.Cmd"
|
||
|
Del "%Temp%\PB6.Cmd" >Nul: 2>&1
|
||
|
|
||
|
Rem
|
||
|
Rem Change Registry Keys to make paths point to user specific
|
||
|
Rem directories.
|
||
|
Rem
|
||
|
|
||
|
Rem If not currently in Install Mode, change to Install Mode.
|
||
|
Set __OrigMode=Install
|
||
|
ChgUsr /query > Nul:
|
||
|
if Not ErrorLevel 101 Goto Begin
|
||
|
Set __OrigMode=Exec
|
||
|
Change User /Install > Nul:
|
||
|
:Begin
|
||
|
|
||
|
..\acsr "#ROOTDRIVE#" "%RootDrive%" Template\pwrbldr6.Key pwrbldr6.key
|
||
|
|
||
|
regini pwrbldr6.key > Nul:
|
||
|
|
||
|
Rem If original mode was execute, change back to Execute Mode.
|
||
|
If "%__OrigMode%" == "Exec" Change User /Execute > Nul:
|
||
|
Set __OrigMode=
|
||
|
|
||
|
Rem #########################################################################
|
||
|
|
||
|
Rem
|
||
|
Rem Update PBld6Usr.Cmd to reflect actual installation directory and
|
||
|
Rem add it to the UsrLogn2.Cmd script
|
||
|
Rem
|
||
|
|
||
|
..\acsr "#INSTDIR#" "%PB6INST%" ..\Logon\Template\PBld6Usr.Cmd ..\Logon\PBld6Usr.cmd
|
||
|
|
||
|
FindStr /I PBld6Usr %SystemRoot%\System32\UsrLogn2.Cmd >Nul: 2>&1
|
||
|
If Not ErrorLevel 1 Goto Skip1
|
||
|
Echo Call PBld6Usr.Cmd >> %SystemRoot%\System32\UsrLogn2.Cmd
|
||
|
:Skip1
|
||
|
|
||
|
Rem #########################################################################
|
||
|
|
||
|
Echo.
|
||
|
Echo To insure proper operation of PowerBuilder 6.0, users who are
|
||
|
Echo currently logged on must log off and log on again before
|
||
|
Echo running PowerBuilder 6.0.
|
||
|
Echo.
|
||
|
Echo PowerBuilder 6.0 Multi-user Application Tuning Complete
|
||
|
|
||
|
Rem
|
||
|
Rem Get the permission compatibility mode from the registry.
|
||
|
Rem If TSUserEnabled is 0 we need to warn user to change mode.
|
||
|
Rem
|
||
|
|
||
|
..\ACRegL "%Temp%\tsuser.Cmd" TSUSERENABLED "HKLM\System\CurrentControlSet\Control\Terminal Server" "TSUserEnabled" ""
|
||
|
|
||
|
If Exist "%Temp%\tsuser.Cmd" (
|
||
|
Call "%Temp%\tsuser.Cmd"
|
||
|
Del "%Temp%\tsuser.Cmd" >Nul: 2>&1
|
||
|
)
|
||
|
|
||
|
If NOT %TSUSERENABLED%==0 goto SkipWarning
|
||
|
Echo.
|
||
|
Echo IMPORTANT!
|
||
|
Echo Terminal Server is currently running in Default Security mode.
|
||
|
Echo This application requires the system to run in Relaxed Security mode
|
||
|
Echo (permissions compatible with Terminal Server 4.0).
|
||
|
Echo Use Terminal Services Configuration to view and change the Terminal
|
||
|
Echo Server security mode.
|
||
|
Echo.
|
||
|
|
||
|
:SkipWarning
|
||
|
|
||
|
Pause
|
||
|
|
||
|
:done
|