Uninstall Office Project Standard 2007
I have installed MS Project Standard 2007 using MSP and when i try to uninstall it using the following commands i get error and my uninstall fails.
MsiExec.exe /X{90120000-003A-0000-0000-0000000FF1CE} /qn (I get 1603 error)
"C:\Program Files\Common Files\Microsoft Shared\OFFICE12\Office Setup Controller\setup.exe" /uninstall PRJSTD /dll OSETUP.DLL ( This doesnt work)
Also tried http://www.altirigos.com/vbulletin/scripting-tools-docs/9025-scripting-silent-uninstall-ms-project-2007-a.html
Code
Configuration Product="PrjStd">
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Logging Type="standard" Path="C:\SctLogs" Template="Microsoft Office Project Professional Setup(*).log" /> -->
<Setting Id="SETUP_REBOOT" Value="NEVER" />
Command
\\yourserver\Microsoft Office 2007\SETUP.EXE /uninstall PrjPro /config Uninstall_CONFIG.XML
</Configuration>
Is there any other way of automating the uninstall?
MsiExec.exe /X{90120000-003A-0000-0000-0000000FF1CE} /qn (I get 1603 error)
"C:\Program Files\Common Files\Microsoft Shared\OFFICE12\Office Setup Controller\setup.exe" /uninstall PRJSTD /dll OSETUP.DLL ( This doesnt work)
Also tried http://www.altirigos.com/vbulletin/scripting-tools-docs/9025-scripting-silent-uninstall-ms-project-2007-a.html
Code
Configuration Product="PrjStd">
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Logging Type="standard" Path="C:\SctLogs" Template="Microsoft Office Project Professional Setup(*).log" /> -->
<Setting Id="SETUP_REBOOT" Value="NEVER" />
Command
\\yourserver\Microsoft Office 2007\SETUP.EXE /uninstall PrjPro /config Uninstall_CONFIG.XML
</Configuration>
Is there any other way of automating the uninstall?
0 Comments
[ + ] Show comments
Answers (8)
Please log in to answer
Posted by:
anonymous_9363
15 years ago
Posted by:
turbokitty
15 years ago
Posted by:
darkfang
15 years ago
You want to uninstall Project STD or Pro ?
Your uninstallation command (/uninstall PrjPro) is different than your .xml (<Configuration Product="PrjStd">)
I think you are missing the value "OptionState" in your .xml
Here a example for removing Visio 2007 :
You should find the OptionState Id value in your PrjSTDWW.msi in the Feature Table (My guess is PRJFiles or PROJECTFiles).
Your uninstallation command (/uninstall PrjPro) is different than your .xml (<Configuration Product="PrjStd">)
I think you are missing the value "OptionState" in your .xml
Here a example for removing Visio 2007 :
<Configuration Product="VisStd">
<Display Level="Basic" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Logging Type="verbose" Path="%Windir%\Temp" Template="VisioStd_2007_SP2_ML_Microsoft_remove.log" />
<Setting Id="SETUP_REBOOT" Value="NEVER" />
<OptionState Id="VISIOFiles" State="absent" Children="force" />
</Configuration>
You should find the OptionState Id value in your PrjSTDWW.msi in the Feature Table (My guess is PRJFiles or PROJECTFiles).
Posted by:
suchi.jigar
15 years ago
Posted by:
darkfang
15 years ago
Posted by:
suchi.jigar
15 years ago
Posted by:
darkfang
15 years ago
Posted by:
suchi.jigar
15 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.