Hi,
OKay I found the solution, for Office updates, you need to find the uninstall
string from the registry:
Browse to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\, and
then search for the KB number of the update you need to remove. Once found,
look at the Uninstall String, and you’ll see a value like this:
For Win 8 x64:
"C:\Program Files\Common Files\Microsoft Shared\OFFICE15\Oarpmany.exe"
/removereleaseinpatch "{90150000-0011-0000-1000-0000000FF1CE}"
"{E8F64CB5-1419-47A8-9FCE-F6E4137F2D25}" "1033" "0"
using the uninstall command:
msiexec /package {90150000-0011-0000-1000-0000000FF1CE}
MSIPATCHREMOVE={E8F64CB5-1419-47A8-9FCE-F6E4137F2D25} /qb /norestart /l+
c:\windows\ccm\logs\KB2850061_rollback.txt
For Win 7 x64:
"C:\Program Files\Common Files\Microsoft Shared\OFFICE15\Oarpmany.exe"
/removereleaseinpatch "{90150000-001A-0409-1000-0000000FF1CE}"
"{DC09D330-4049-4A18-8591-CDA3E30A9F6B}" "1033" "0"
using the uninstall command:
msiexec /package {90150000-001A-0409-1000-0000000FF1CE}
MSIPATCHREMOVE={DC09D330-4049-4A18-8591-CDA3E30A9F6B} /qb /norestart /l+
c:\windows\ccm\logs\KB2850061_rollback.txt
Maybe helps others too.
Regards.
From: Trevor Sullivan
Sent: Monday, February 24, 2014 9:47 PM
To: [email protected]
Subject: RE: [mssms] Uninstall .msp files
Bogdan,
This document has some details about uninstalling Windows Installer patches
(MSPs):
http://msdn.microsoft.com/en-us/library/aa372104(v=vs.85).aspx
Cheers,
Trevor Sullivan
From: [email protected] [mailto:[email protected]] On
Behalf Of Radu Bogdan
Sent: Monday, February 24, 2014 8:26 AM
To: [email protected]
Subject: [mssms] Uninstall .msp files
Hi all,
Recently I encounter a problem with Office 2013 clients, Outlook 2013 cannot
connect after an Exchange Server 2010 mailbox is moved to Exchange Server 2013.
I found this article ( Last Review: February 21, 2014 )
http://support.microsoft.com/kb/2934750
Using more then 1000 clients, I choose Method 4: Revert to an earlier version
of Outlook;
Basically they say:
“If you have an MSI installation of Office 2013, you can try to uninstall the
October 16, 2013 (KB 2825677) and December 10, 2013 (KB 2825652) hotfix
packages for Outlook 2013.”
KB2825677 is a .msp file
KB2825652 is a .msu file
I know the command for installing both, but I`m not sure about uninstalling the
.msp file, is this okay ?
msiexec /uninstall Update.msp /quiet /norestart
What is the best method to include both in Task Sequence ?
Thank you.
Cheers.