Forum Discussion

Granulat's avatar
Granulat
Copper Contributor
May 11, 2020

How to detect Edge at silent install

If you use Enterprise msi data for auto (silent) install you will get a problem if there were a already installed older version of ms edge. What it the best way to detect this old version? Can it be automatically deinstalled with any msi option?

  • hiteshrabadia's avatar
    hiteshrabadia
    Copper Contributor

    Granulat

     

    I have used the following command with no issues msiexec /i "MicrosoftEdgeEnterpriseX64.msi" /q

    You can get the version by running the following command wmic product where "name='Microsoft Edge'" get version

    You can uninstall by running the following command wmic product where name="Microsoft Edge" call uninstall

Resources