"Windows update could not be uninstalled because of error 2147549183 "Catastrophic failure" (Command line: ""C:\windows\system32\wusa.exe" /uninstall /kb:######)
I need to be able to automate the rollback process since we have a large environment. I've tried multiple methods of deploying, including deploying through a task sequence via a command line, deploying a batch file with the command, or simply entering the command into the command line field of my package program properties. All of these efforts have been met with the same results.
I'm wondering if anyone else has seen this same issue or if anyone can tell me how they handle the rollback of updates in Windows 7 when using a SUP.
Thanks
First of all, thank you for your response.
I'm thinking I may need to be more clear in what I'm trying to do. I realize I cannot roll back updates through the SUP, but what I was trying to do was deploy the "wusa.exe /uninstall /kb:###### /quiet" command through an advertisement. As I said before, I can run this command locally on a machine and it works as it should, however when I try to advertise it, I receive the error I posted above.
If anyone handles this process by using other methods I'd love to see some examples or discuss.
If so: try using a tasksequence using a "run command line" step (that contains the command line you already posted) and disable the 64bit redirection.
As Kent mentioned you need to create seperate package for this KB and then advertise that with uninstall program.
There is a blog post re: the same (I've not tried it). May be you can give try?
http://trevorsullivan.net/2011/05/31/powershell-removing-software-updates-from-windows/
you need to call the Sysnative version of WUSA:
%WINDIR%\SysNative\wusa.exe /kb:2592687 /uninstall /quiet /norestart
I'm trying to use the WUSA.exe /uninstall, but it keeps saying the update isn't installed. HOWEVER, when I look in the installed update section in the Control Panel, I can clearly see it's installed.
What do I do from here?
I'm trying to use the WUSA.exe /uninstall, but it keeps saying the update isn't installed. HOWEVER, when I look in the installed update section in the Control Panel, I can clearly see it's installed.
What do I do from here?
A few thoughts;
Windows7 or later ? (wusa doesn't apply to earlier OS versions)
show us your syntax, might be able to see the problem.
checked the logs ?
have you tried the exact commandline yourself manually ?
wusa only works for Windows updates (MSU files), not for Office and other updates..
you need to call the Sysnative version of WUSA:
%WINDIR%\SysNative\wusa.exe /kb:2592687 /uninstall /quiet /nor
I find a solutions with dism tool:
Works on Windows Server 2008R2, 7, 8 and higher1. Find the list of packages installed on the machine with the issue by performing this command Code: dism /online /get-packages /format:table
for ease of reading I did the following: Code: dism /online /get-packages /format:table > patches.txt
2. From the list get the Package Identity Name Code: Package_for_KB2870699~31bf3856ad364e35~amd64~~6.2.1.1
3. Run this command to uninstall the update silently Code:
DISM.exe /Online /Remove-Package /PackageName:Package_for_KB2870699~31bf3856ad364e35~amd64~~6.2.1.1 /quiet /norestart
Source: http://arstechnica.com/civis/viewtopic.php?t=1217819
- Proposed as answer by Cristian.Ceobanu 20 hours 0 minutes ago
I find a solutions with dism tool:
Works on Windows Server 2008R2, 7, 8 and higher1. Find the list of packages installed on the machine with the issue by performing this command Code: dism /online /get-packages /format:table
for ease of reading I did the following: Code: dism /online /get-packages /format:table > patches.txt
2. From the list get the Package Identity Name Code: Package_for_KB2870699~31bf3856ad364e35~amd64~~6.2.1.1
3. Run this command to uninstall the update silently Code:
DISM.exe /Online /Remove-Package /PackageName:Package_for_KB2870699~31bf3856ad364e35~amd64~~6.2.1.1 /quiet /norestart
Source: http://arstechnica.com/civis/viewtopic.php?t=1217819
- Proposed as answer by Cristian.Ceobanu Friday, March 13, 2015 11:33 AM


