Google Chrome Canary 24.0.1300

This commit is contained in:
Iristyle
2012-10-18 02:43:51 -04:00
parent 30f4955043
commit 823a2bb908
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
$package = 'Chrome.Canary'
try {
$url = 'https://dl.google.com/tag/s/appguid%3D%7B4ea16ac7-fd5a-47c3-875b-dbf4a2008c20%7D%26iid%3D%7B0281A7E2-6043-D983-8BBA-7FD622493C9D%7D%26lang%3Den%26browser%3D4%26usagestats%3D1%26appname%3DGoogle%2520Chrome%2520Canary%26needsadmin%3Dfalse/update2/installers/ChromeSetup.exe'
Install-ChocolateyPackage 'ChromeSetup' 'exe' '' $url
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}