Forum Discussion
Granulat
May 11, 2020Copper Contributor
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?
- hiteshrabadiaCopper Contributor
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