If you face the situation where you need a browser in a Windows system and you don’t have any or the only browser is Internet Explorer. You can try this one-line Powershell command: $LocalTempDir = $env:TEMP; $ChromeInstaller = “ChromeInstaller.exe”; (new-object System.Net.WebClient).DownloadFile(‘http://dl.google.com/chrome/install/375.126/chrome_installer.exe’, “$LocalTempDir\$ChromeInstaller”); & “$LocalTempDir\$ChromeInstaller” /silent /install; $Process2Monitor = “ChromeInstaller”; Do { $ProcessesFound = Get-Process | …
Continue reading “How-to install Chrome in Windows with a oneline Powershell”