Hello all,
I am having problems deploying my startup script. The goal of the script is to back up the users Lotus Notes local data (ie personal settings, views..) uninstall Lotus Notes 6.5 single user, install Lotus Notes 8.5.2 multi user. This works perfectly on Windows XP.
On Windows 7, the script copies the data folder and edits the registry then fails on the .msi install. Remote Registry and Windows Installer services are both running. Have tried with different UAC levels too. Any pointers would be great thank you.
========SCRIPT========
IF EXIST "%systemdrive%\Notes6" GOTO END
IF NOT EXIST "%programfiles%\lotus" GOTO END
regedit /s \\aq-ad\Users\configuration_files\Data\Notes_upgrade\NotesMulti.reg
xcopy "%programfiles%\Lotus\Notes\Data" "%systemdrive%\Notes6\Data\" /Y /Q /E /H /I /C
(THIS IS WHERE IT FAILS)
msiexec /i "\\aq-ad\Users\configuration_files\Data\Notes_upgrade\Multi_setup\Lotus Notes 8.5.2.msi" TRANSFORMS="\\aq-ad\Users\configuration_files\Data\Notes_upgrade\Multi_setup\Lotus Notes 8.5.2.mst" /qb
:END
Exit
I am having problems deploying my startup script. The goal of the script is to back up the users Lotus Notes local data (ie personal settings, views..) uninstall Lotus Notes 6.5 single user, install Lotus Notes 8.5.2 multi user. This works perfectly on Windows XP.
On Windows 7, the script copies the data folder and edits the registry then fails on the .msi install. Remote Registry and Windows Installer services are both running. Have tried with different UAC levels too. Any pointers would be great thank you.
========SCRIPT========
IF EXIST "%systemdrive%\Notes6" GOTO END
IF NOT EXIST "%programfiles%\lotus" GOTO END
regedit /s \\aq-ad\Users\configuration_files\Data\Notes_upgrade\NotesMulti.reg
xcopy "%programfiles%\Lotus\Notes\Data" "%systemdrive%\Notes6\Data\" /Y /Q /E /H /I /C
(THIS IS WHERE IT FAILS)
msiexec /i "\\aq-ad\Users\configuration_files\Data\Notes_upgrade\Multi_setup\Lotus Notes 8.5.2.msi" TRANSFORMS="\\aq-ad\Users\configuration_files\Data\Notes_upgrade\Multi_setup\Lotus Notes 8.5.2.mst" /qb
:END
Exit