Silent Install

G

Geoff Cox

When running a silent install using an administrative
install point is there any way to inform the user that an
installation is taking place. It appears that the default
is to install with no message to the user.
Many thanks
 
S

Steve

If you use a batch file to launch your silent install, the
following might be a work around.

'=========silentsetup.bat==========
setup.exe TRANSFORMS="mst_file_path_here.mst" /qn+
cls
echo.
echo.
echo Office 2000 installation in progress...
echo (when completed, a prompt will pop up.)
echo (hit any key to exit this screen)
pause >nul
'===============end===============
 
Top