@echo off Call "%SystemRoot%\Application Compatibility Scripts\RootDrv.Cmd" if Exist "%RootDrive%\Lotus" Goto Skip1 cd "%SystemRoot%\Application Compatibility Scripts\Logon" call TsMkUDir "%RootDrive%\Lotus\Work\123" call TsMkUDir "%RootDrive%\Lotus\work\approach" call TsMkUDir "%RootDrive%\Lotus\work\flg" call TsMkUDir "%RootDrive%\Lotus\backup\flg" call TsMkUDir "%RootDrive%\Lotus\work\organize" call TsMkUDir "%RootDrive%\Lotus\backup\organize" call TsMkUDir "%RootDrive%\Lotus\work\smartctr" call TsMkUDir "%RootDrive%\Lotus\work\wordpro" call TsMkUDir "%RootDrive%\Lotus\backup\wordpro" If Not Exist ss97usr.reg goto Skip1 regedit /s ss97usr.reg Rem Rem ######################################################################### Rem Rem Get the installation location of Lotus Wordpro from the registry. Rem ..\ACRegL "%Temp%\wordpro.Cmd" WP "HKLM\Software\Lotus\Wordpro\97.0" "Path" "" If Exist "%Temp%\wordpro.Cmd" Call "%Temp%\wordpro.Cmd" Del "%Temp%\wordpro.Cmd" >Nul: 2>&1 Rem Rem ######################################################################### Rem Rem Get the installation location of FreeLance from the registry. Rem ..\ACRegL "%Temp%\flance.Cmd" FL "HKLM\Software\Lotus\Freelance\97.0" "Path" "" If Exist "%Temp%\flance.Cmd" Call "%Temp%\flance.Cmd" Del "%Temp%\flance.Cmd" >Nul: 2>&1 Rem Rem ######################################################################### Rem Rem Get the installation location of Lotus 123 from the registry. Rem ..\ACRegL "%Temp%\123.Cmd" OT "HKLM\Software\Lotus\123\97.0" "Path" "" If Exist "%Temp%\123.Cmd" Call "%Temp%\123.Cmd" Del "%Temp%\123.Cmd" >Nul: 2>&1 Rem Rem ######################################################################### Rem Rem Get the installation location of Lotus Approach from the registry. Rem ..\ACRegL "%Temp%\approach.Cmd" AP "HKLM\Software\Lotus\Approach\97.0" "Path" "" If Exist "%Temp%\approach.Cmd" Call "%Temp%\approach.Cmd" Del "%Temp%\approach.Cmd" >Nul: 2>&1 Rem Rem ######################################################################### Rem Rem Get the installation location of Lotus Organizer from the registry. Rem ..\ACRegL "%Temp%\organize.Cmd" OR "HKLM\Software\Lotus\Organizer\97.0" "Path" "" If Exist "%Temp%\organize.Cmd" Call "%Temp%\organize.Cmd" Del "%Temp%\organize.Cmd" >Nul: 2>&1 Rem Rem ######################################################################### If Not Exist "%RootDrive%\Lotus\123\icons" ( If Exist "%OT%icons" ( call TsMkUDir "%RootDrive%\Lotus\123\icons" xcopy /E "%OT%icons" "%RootDrive%\Lotus\123\icons" >Nul: 2>&1 ) ) If Not Exist "%RootDrive%\Lotus\approach\icons" ( If Exist "%AP%icons" ( call TsMkUDir "%RootDrive%\Lotus\approach\icons" xcopy /E "%AP%icons" "%RootDrive%\Lotus\approach\icons" >Nul: 2>&1 ) ) If Not Exist "%RootDrive%\Lotus\organize\icons" ( If Exist "%OR%\icons" ( call TsMkUDir "%RootDrive%\Lotus\organize\icons" xcopy /E "%OR%\icons" "%RootDrive%\Lotus\organize\icons" >Nul: 2>&1 ) ) If Not Exist "%RootDrive%\Lotus\flg\icons" ( If Exist "%FL%\icons" ( call TsMkUDir "%RootDrive%\Lotus\flg\icons" xcopy /E "%FL%\icons" "%RootDrive%\Lotus\flg\icons" >Nul: 2>&1 ) ) If Not Exist "%RootDrive%\Lotus\wordpro\icons" ( If Exist "%WP%\icons" ( call TsMkUDir "%RootDrive%\Lotus\wordpro\icons" xcopy /E "%WP%\icons" "%RootDrive%\Lotus\wordpro\icons" >Nul: 2>&1 ) ) :SKip1