dboullt
Posts: 21
Score: 0 Joined: 1/22/2007 Status: offline
|
Have a working script to push out my new install of office 2003 the following part of the script works, but after the last exe install runs there is a close dialogue box which the user has to close which I do not want to happen Secondly during the execution of all three installs I see the dialogue boxes as the installation occurs would like all of this to be hidden if possible Below is the portion of the script which does the installs 'Install MS Office 2003 SP3 english WshShell.Run strPath & "setup.exe TRANSFORMS=O2k3Pro.MST /qb- /noreboot", 1, True 'Install 2 Converters for MS Office 2007 and former Office files wshShell.Run strPath & "\Tools\FileFormatConverters.exe /passive /quiet /norestart", 1, True wshShell.Run strPath & "\Tools\OCONVPCK.EXE /Q", 1, True
|