Skip to main content
Participant
April 27, 2021
Answered

Uninstall from Microsoft Intune

  • April 27, 2021
  • 1 reply
  • 16209 views

Our request

We uninstall Adobe Reader DC by Microsoft Intune.

 

Our case

I registrated uninstall command "MsiExec.exe /I{<Product Code>} /q".

But I fail to uninstall.

This topic has been closed for replies.
Correct answer yasuhiro5C7D

Thank you for recomed site (https://stackoverflow.com/questions/29937568/how-can-i-find-the-product-guid-of-an-installed-msi-setup/29937569#29937569)

 

I could silent uninstall Adobe Reader DC.

uninstall commnd:

msiexec.exe /x {<Product code>} /QN /L*V "C:\My.log" REBOOT=ReallySuppress

1 reply

ls_rbls
Community Expert
Community Expert
April 27, 2021

You may need the original name of the old msi package.

 

From what I've read before, only the old msi package that you used to install the program knows how to uninstall itself.

 

The method that you're currently using requires more than just knowing the product key.

 

You may need to identify if the msi package that you're currently trying to uninstall is actually the original installer program or an upgrade code.

 

Try some of the methods described in the link below:

 

 

There's other alternative methods described in more detail here:

 

yasuhiro5C7DAuthorCorrect answer
Participant
April 27, 2021

Thank you for recomed site (https://stackoverflow.com/questions/29937568/how-can-i-find-the-product-guid-of-an-installed-msi-setup/29937569#29937569)

 

I could silent uninstall Adobe Reader DC.

uninstall commnd:

msiexec.exe /x {<Product code>} /QN /L*V "C:\My.log" REBOOT=ReallySuppress

ls_rbls
Community Expert
Community Expert
April 27, 2021

You're welcome.