Bạn có thể "âm thầm cài đặt" Google Chrome trên bất kỳ HĐH Windows hiện đại nào với một lớp lót Powershell sau:
$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)
Vâng, về mặt kỹ thuật nó không phải là một lớp lót, nhưng nó hoạt động như nó là. Nó sẽ hoạt động ngay cả khi IE Tăng cường bảo mật được bật, do đó, nó rất hữu ích cho các cài đặt hoàn toàn mới của Windows Server khi IE sẽ ngăn bạn tải xuống Chrome.
Bạn cũng có thể đọc ở đây để biết thêm thông tin.