SCCM Uninstallable Packages
How to create uninstallation package using SCCM 2007 for Microsoft Visio, Project, OneNote and SharePoint applications.
Kindly provide some steps if it is possible.
Regards, Pratap
June 21st, 2011 12:31pm
You have to create a config-file to make the uninstall silent. For Project Standard it looks like this:
<Configuration Product="PrjStd">
<Display Level="None" CompletionNotice="No" SuppressModal="Yes" AcceptEula="Yes" />
<Setting Id="SETUP_REBOOT" Value="Never" />
</Configuration>
For the other apps you need to modify the top line to match the product. You can find the value in the config.xml file in the <product>.WW folder on each media.
The command line to run the uninstall:
setup /config <path to config file> /uninstall PrjStd
Free Windows Admin Tool Kit Click here and download it now
June 21st, 2011 12:59pm
you can try unstalling from uninstall string which you can find
HKLM/software/microsoft/windows\currentversion\uninstall
Find the key for the software that you wants to uninstall there you will find uninstall string.
Now you need to create program/package with same uninstall string and target make sure you put "/qn" in commandline.
June 21st, 2011 4:09pm
v-2bhasx: While this works in most cases it is not the correct way to uninstall Microsoft Office poducts
Free Windows Admin Tool Kit Click here and download it now
June 22nd, 2011 4:00pm
Hi Erik,
I get the below error
"The program for advertisement "D012050A has not yet started because the content for the package "D0100029" - "Uninstall" (version 1) has not been acquired. Possible cause: The content for this program must be downloaded into the computer's cache, or the
content could not be located".Regards, Pratap
June 25th, 2011 2:24pm
Have you added the xml-file to the product you want to uninstall and then distributed the package to a distribution point?
Free Windows Admin Tool Kit Click here and download it now
June 27th, 2011 3:45pm
Yes i created the xml fileRegards, Pratap
July 2nd, 2011 1:00pm


