How to detect Edge at silent install

Copper Contributor

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?

1 Reply

@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