Answers:
下载Chrome安装程序。
使用开关/silent
, /install
如下所示:
chrome_installer.exe /silent /install
请享用!
可以使用Chocolatey静默安装Chrome 。
安装Chocolatey
以管理员身份打开命令提示符,然后发出:
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
安装Chrome
choco install googlechrome
如果只有PowerShell 2.0具有本机单行curl ...为简单起见,我创建了自己的URL,并使用url下载内容。如果您需要基本身份验证,我也提供了相关参数。
要启动并运行:
Get-Url
并以静默方式执行chrome_installer.exe
注意:如果您有任何问题:
$filePath
)的现有目录# our curl command, with basic authentication if $credentials provided
function Get-Url {
param(
[string]$url, # e.g. "http://dl.google.com/chrome/install/375.126/chrome_installer.exe"
[string]$filepath, # e.g. "c:\temp\chrome_installer.exe"
[string]$credentials # e.g. "username:pass"
)
$client = New-Object System.Net.WebClient;
if ($credentials) {
$credentialsB64 = [System.Text.Encoding]::UTF8.GetBytes($credentials) ;
$credentialsB64 = [System.Convert]::ToBase64String($credentialsB64) ;
$client.Headers.Add("Authorization", "Basic " + $credentialsB64) ;
}
$client.DownloadFile($url, $filepath);
}
# curl and run silent install
Get-Url http://dl.google.com/chrome/install/375.126/chrome_installer.exe c:\temp\chrome_installer.exe ;
c:\temp\chrome_installer.exe /silent /install ;
完美运行-在Windows 10 EDU 64位上使用PDQ Deploy一次在10台笔记本电脑上进行了测试:还可以与脱机安装程序chromestandalonesetup.exe一起使用,在PDQ Deploy上带有/ silent / install标签
msiexec.exe /i "\\tabeguache\c$\PDQ Deploy Packages\googlechromestandaloneenterprise64.msi" /quiet /passive
我强烈建议安装免费版PDQDeploy
。只需下载MSI,然后输入上面的自定义安装命令,然后选择要在其上安装计算机的计算机即可。它可以安装在任意数量的计算机上,无论何时有人都登录到计算机上,都无需排队就可以一次排队8台。如果还安装PDQInventory
,则只需单击几下即可将其安装到所有Domain工作站上。
您可以使用以下Powershell单行代码在任何现代Windows操作系统上“静默安装” Google Chrome:
$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增强安全性已打开,它也将起作用,因此当IE阻止您下载Chrome时,它对于Windows Server全新安装非常有用。
您也可以在这里阅读更多信息。