Google Chrome Dev Channel 24.0.1297.0

This commit is contained in:
Iristyle
2012-10-23 15:28:35 -04:00
parent 8e3164ac34
commit 9c15f4f306
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
$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
}