Skip to main content
Participant
April 27, 2021
解決済み

Uninstall from Microsoft Intune

  • April 27, 2021
  • 返信数 1.
  • 16209 ビュー

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.

このトピックへの返信は締め切られました。
解決に役立った回答 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

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:

 

yasuhiro5C7D作成者解決!
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.