mohd.S.H Posted August 4, 2014 Report post Posted August 4, 2014 Dear, how can I uninstall office 2010 (32bit) standard using sccm2012?? please help I need easy way Quote Share this post Link to post Share on other sites More sharing options...
ZeZe Posted August 5, 2014 Report post Posted August 5, 2014 Create a script CMD with these lines: @for %%i in (%0\..\) do set CWD=%%~fxi REM PROGRAM cd "C:\Program Files\Common Files\Microsoft Shared\OFFICE14\Office Setup Controller\" @start /wait setup.exe /uninstall STANDARD /dll OSETUP.DLL /config %CWD%install\Standard.WW\config.xml create config.xml with: <Configuration Product="Standard"> <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /> <Setting Id="SETUP_REBOOT" Value="Never" /> </Configuration> Test it on the local environment before you deploy this package. Hope it helps! Quote Share this post Link to post Share on other sites More sharing options...