Google Chrome'u, aşağıdaki Powershell tek astarlı herhangi bir modern Windows işletim sistemine "sessizce" yükleyebilirsiniz:
$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 | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 } else { rm "$LocalTempDir\$ChromeInstaller" -ErrorAction SilentlyContinue -Verbose } } Until (!$ProcessesFound)
Teknik olarak tek astar değil, ama olduğu gibi çalışıyor. IE Gelişmiş Güvenlik açık olsa bile çalışır, böylece IE Chrome'u indirmenizi önleyeceği zaman Windows Server'ın yepyeni yüklemeleri için çok yararlı olur.
Ek bilgi için burayı da okuyabilirsiniz .