This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Installshield Silent Install sometimes doesn't copy over notes.exe ~Isaac Optoobergjip 12.Feb.03 01:04 PM a Web browser Notes Client 6.0Windows 2000
Some feedback on silent install.
I took some advice from the redbook "Upgrading to Lotus Notes and Domino 6" and decided to backup some critical files before the install. So, I pointed the 'upgrade by mail' document at a batch file that looks like this.
@echo off
REM ---------------- B A C K U P --------------
md H:\notes_backup
copy c:\notes\*.ini H:\notes_backup
copy c:\notes\data\desktop*.dsk H:\notes_backup
copy c:\notes\data\names.nsf H:\notes_backup
copy c:\notes\data\*.id H:\notes_backup
copy c:\notes\data\user.dic H:\notes_backup
REM ---------------- I N S T A L L ------------
\\bmic5\apps\NOTES\R6_Client\setup.exe /v"/qb+ TRANSFORMS=BMI_ND6_Desktop.mst"
The redbook suggests using the parm /qn for a silent install, but I used /qb so the user would see progress throughout the installation. The downside is that /qb also has a cancel button so that the installation could be interupted.