Microsoft Sharepoint Designer 2013 Command Line Uninstall Fails
Answers (1)
You need to provide a [ProductID] to the setup.exe / uninstall command not the ProductCode GUID - the terminology is a bit confusing as the ProductID in this case is not an MSI property, but can be found in the setup.xml file in the source media.
This is how it looks for English (US) SharePointDesigner 2007 (I don't have source for SharePointDesigner 2013 but I assume it is similar) :
In the folder SharePointDesigner.WW, you will find the file setup.xml, open it with an editor and locate the line beginning with <Setup Id=
the word in quotes immediately following <Setup Id= is the ProductID - for SharePointDesigner 2007 the ProductID is SharePointDesigner so I will assume it is correct also for SharePointDesigner 2013 - but do check to make sure !
so the command line for an uninstall of SharePointDesigner 2013 should now be
setup.exe /uninstall SharePointDesigner
If you want to uninstall silently then create a silent uninstall config.xml file named (say) silentuninst.xml in the same folder as setup.xml and add the following lines
<Configuration Product="SharePointDesigner">
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
</Configuration>
so your silent uninstall command would now be
setup.exe /uninstall SharePointDesigner /config silentuninst.xml
--------------------------------------------------------------------------------------
Spartacus
Comments:
-
This worked Perfectly.. THANKS!!!! - usgrcm 10 years ago