I've configured a Group Policy Object to install Adobe Reader X, but one machine keeps uninstalling the package on start-up - even if it is installed manually.

This one machine also doesn't show Reader as an installable app in Add/Remove programs.

link|improve this question
3  
GPO is doing you a favor. – DanBig Apr 18 '11 at 17:15
feedback

3 Answers

up vote 1 down vote accepted

Remove the computer from the GPO. Manually uninstall (remove registry entries and related files BACKUP FIRST) Adobe Reader X on the target machine after a gpupdate /force and a reboot. Apply GPO to computer, gpupdate /force and reboot. This has worked for me with a different MSI that I was having a similar problem.

link|improve this answer
ive attempted to do this before and once the GPO was reapplied its went back in to its loop – Trozz Apr 19 '11 at 13:08
feedback

I have been in this state when using an MSI before, I now tend to use BAT files to install example below is for installing VLC to networked computers

IF NOT EXIST "C:\Program Files\VideoLAN\VLC\vlc.exe" GOTO installer
Exit

:installer
\\NETWORKPATH\SHARE\vlc-1.1.7-win32.exe /s
EXIT

This checks if a file exists and if it does not then it will install the program.

This is simply a startup script used within a group policy :)

link|improve this answer
feedback

Have you enabled verbose Windows Installer logging, and checked the log files? These are typically named msi*.log and located in a temporary folder, such as %systemroot%\temp. The Windows Installer log files are usually very helpful in tracking down the issues.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.