SCCM - Removal of Project and Visio 2010
To remove Project and Visio and 2010 through SCCM you need to create a separate application package pointing to the original installation executable and then add the following install switches.
Project:
setup.exe /uninstall PrjStd /config "PrjStd.ww\uninstall.xml"
Visio:
setup.exe /uninstall Visio /config "visio.ww\uninstall.xml"
The uninstall file contains the following:
<Configuration Product="Visio">
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Logging Type="standard" Path="C:\Install\Logs" Template="Microsoft Office Visio Standard Setup(*).log" />
<Setting Id="SETUP_REBOOT" Value="NEVER" />
</Configuration>
To remove Project and Visio and 2010 through SCCM you need to create a separate application package pointing to the original installation executable and then add the following install switches.
Project:
setup.exe /uninstall PrjStd /config "PrjStd.ww\uninstall.xml"
Visio:
setup.exe /uninstall Visio /config "visio.ww\uninstall.xml"
The uninstall file contains the following:
<Configuration Product="Visio">
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Logging Type="standard" Path="C:\Install\Logs" Template="Microsoft Office Visio Standard Setup(*).log" />
<Setting Id="SETUP_REBOOT" Value="NEVER" />
</Configuration>
Comments
Post a Comment