คุณสามารถ "ติดตั้งอย่างเงียบ ๆ " Google Chrome บน Windows OS ที่ทันสมัยด้วย Powershell one-liner ต่อไปนี้:
$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)
ในทางเทคนิคแล้วมันไม่ใช่ซับเดี่ยว แต่ใช้งานได้ดี มันจะทำงานแม้ว่า IE Enhanced Security จะเปิดใช้งานอยู่ดังนั้นจึงเป็นประโยชน์อย่างมากสำหรับการติดตั้งใหม่ล่าสุดของ Windows Server เมื่อ IE จะป้องกันไม่ให้คุณดาวน์โหลด Chrome
คุณสามารถอ่านข้อมูลเพิ่มเติมได้ที่นี่