October MS Patches KB4011178 Removal

Hi. Few Outlook KBs for October is causing issues to my users and I have to work on creating package to remove them. Since it is related to Office products, It has to use the Office product IDs. I get to build this relevance to identify the uninstall string. I am wondering if someone can assist to convert this to action script to execute the removal. Thx

q: ((value “UninstallString” of it) of keys whose (value “DisplayName” of it as string as lowercase contains (“Security Update for Microsoft Outlook 2013 (KB4011178)” as string as lowercase)) of key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall” of registry as string)
A: “C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Oarpmany.exe” /removereleaseinpatch “{90150000-0011-0000-0000-0000000FF1CE}” “{7A67D76A-F333-470D-9FBA-34109A523ABA}” “1033” "0"
A: “C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Oarpmany.exe” /removereleaseinpatch “{90150000-001A-0409-0000-0000000FF1CE}” “{7A67D76A-F333-470D-9FBA-34109A523ABA}” “1033” “0”

1 Like

Hi KCheung,
Try the following on your action script. that syntax has worked for me removing previous Outlook Updates when needed:

waithidden “{pathname of system folder & “\msiexec.exe”}” /package {"{90150000-0011-0000-0000-0000000FF1CE}}"} /uninstall “{7A67D76A-F333-470D-9FBA-34109A523ABA}}”} /qn REBOOT=ReallySuppress /l*v “C:\Windows\temp\KB4011178_uninstall.log”