Files
ChocolateyPackages/GoogleChrome.Dev/tools/chocolateyInstall.ps1
2012-10-23 15:28:35 -04:00

19 lines
656 B
PowerShell

$package = 'Chrome.Dev'
try {
$params = @{
PackageName = $package;
FileType = 'exe';
SilentArgs = '/silent /installsource silent /install';
Url = 'https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B0AA7B49A-29EA-0AE3-8A45-61F351F89414%7D%26lang%3Den%26browser%3D2%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dfalse%26ap%3D2.0-dev%26installdataindex%3Ddefaultbrowser/update2/installers/ChromeSetup.exe'
}
Install-ChocolateyPackage @params
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}