Adobe AIR 3.4.0.2710

This commit is contained in:
Iristyle
2012-10-23 15:47:06 -04:00
parent 9c15f4f306
commit 903db12902
4 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
$package = 'AdobeAIR'
try {
$params = @{
PackageName = $package;
FileType = 'exe';
SilentArgs = '-silent -eulaAccepted';
Url = 'http://airdownload.adobe.com/air/win/download/3.4/AdobeAIRInstaller.exe'
}
Install-ChocolateyPackage @params
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}