Needing some help with command
Hi,
I want to launch a remote command to uninstall a specific hotfix using this command wusa /uninstall /kb:3172519 /quiet /norestart
I tried this on 2 machines, but I'm getting the following error messages:
PC1: return code: 87
PC2: return code: 2359303
What am I doing wrong or did I forget something?
Jo
0
Comments
Try Below command, use PDQ deploy with command step,
@REM Uninstall for this KB often required twice
%SYSTEMROOT%\System32\Wusa.exe /uninstall /kb:2760779 /quiet /norestart
%SYSTEMROOT%\System32\Wusa.exe /uninstall /kb:2760779 /quiet /norestart
Sometimes you need to add command twice.
I'm not using the pro version, can I do this in the free version?
So an update: I created a batch file. Then created a new package using this batch file. When I try to push it I'm getting this error: RemoveHotfix.bat returned error code 87
This is the code I'm using
@REM Uninstall for this KB often required twice
%SYSTEMROOT%\System32\Wusa.exe /uninstall /kb:3172519 /quiet /norestart
%SYSTEMROOT%\System32\Wusa.exe /uninstall /kb:3172519 /quiet /norestart
But even if I'm launching the batch file directly, it doesn't seem to do anything :(