Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

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

3 comments
Date Votes
  • 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.

    0
  • I'm not using the pro version, can I do this in the free version?

    0
  • 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 :(

    0