Files In Use dialog box
In Win7, I am trying to do a silent install of PDF Converter Enterprise 8. I keep getting a files in use dialog box that lists applications that should be closed before continuing the install. The radio button to close the application and attempt to restart it after install is already marked. It then has an ok or cancel button. How do I program the ok button so the dialog box proceeds without the user having to click the button? Thank you for your help.
Answers (4)
In Windows Vista or later, Restart Manager can detect processes that have files in use and stop and restart them without requiring a restart of the computer. By default this option is checked in all setup captured msi and most of the vendor msi...
If you are using Wise Package Studio then go to Installation Expert->Windows Installer Option
and uncheck the following check boxes
Use Restart Manager
Restart Registered applications that were shutdown by Restart Manager
This should reslove your issue...
Comments:
-
Are you doing fresh installation or upgrade??? - jagadeish 12 years ago
You can run taskkill prior to deployment to stop these tasks it is complaining about.
http://technet.microsoft.com/en-us/library/bb491009
EX:
TASKKILL /F /IM PdfPro7Hook.exe >NUL 2>&1
TASKKILL /F /IM PDFRouter.exe >NUL 2>&1
TASKKILL /F /IM PDFDirect.exe >NUL 2>&1
TASKKILL /F /IM PDFPlus.exe >NUL 2>&1
TASKKILL /F /IM pdfprofiltsrv.exe >NUL 2>&1
TASKKILL /F /IM PDFProFiltSrv.exe >NUL 2>&1
TASKKILL /F /IM iexplore.exe >NUL 2>&1
TASKKILL /F /IM winword.exe >NUL 2>&1
TASKKILL /F /IM outlook.exe >NUL 2>&1
TASKKILL /F /IM excel.exe >NUL 2>&1
TASKKILL /F /IM MSACCESS.exe >NUL 2>&1
TASKKILL /F /IM NOTEPAD.exe >NUL 2>&1
TASKKILL /F /IM POWERPNT.exe >NUL 2>&1
TASKKILL /F /IM EXPLORER.exe >NUL 2>&1