From 273bb66b59f73cee0f954c27506d2e5c38353d4f Mon Sep 17 00:00:00 2001 From: Iristyle Date: Thu, 25 Apr 2013 12:32:16 -0400 Subject: [PATCH] feat(AWSTools.Powershell): release 1.0.0 --- .../AWSTools.Powershell.nuspec | 24 +++++++++++++++++++ .../tools/chocolateyInstall.ps1 | 16 +++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 AWSTools.Powershell/AWSTools.Powershell.nuspec create mode 100644 AWSTools.Powershell/tools/chocolateyInstall.ps1 diff --git a/AWSTools.Powershell/AWSTools.Powershell.nuspec b/AWSTools.Powershell/AWSTools.Powershell.nuspec new file mode 100644 index 0000000..123079a --- /dev/null +++ b/AWSTools.Powershell/AWSTools.Powershell.nuspec @@ -0,0 +1,24 @@ + + + + AWSTools.Powershell + AWS Tools for Windows PowerShell + 1.0.0.20130405 + Amazon Web Services + Ethan Brown + The AWS Tools for Windows PowerShell lets developers and administrators manage their AWS services from the Windows PowerShell scripting environment. Now you can manage your AWS resources with the same Windows PowerShell tools you use to manage your Windows environment. + The AWS Tools for Windows PowerShell lets developers and administrators manage their AWS services from the Windows PowerShell scripting environment. Now you can manage your AWS resources with the same Windows PowerShell tools you use to manage your Windows environment. + http://aws.amazon.com/powershell/ + AWS Amazon cloud + http://aws.amazon.com/apache2.0/ + false + http://media.amazonwebservices.com/aws_singlebox_01.png + + + + + + + + + diff --git a/AWSTools.Powershell/tools/chocolateyInstall.ps1 b/AWSTools.Powershell/tools/chocolateyInstall.ps1 new file mode 100644 index 0000000..e7f7391 --- /dev/null +++ b/AWSTools.Powershell/tools/chocolateyInstall.ps1 @@ -0,0 +1,16 @@ +$package = 'AWSTools.Powershell' + +try { + $params = @{ + packageName = $package; + fileType = 'msi'; + silentArgs = '/quiet'; + url = 'http://sdk-for-net.amazonwebservices.com/latest/AWSToolsAndSDKForNet.msi'; + } + + Install-ChocolateyPackage @params + Write-ChocolateySuccess $package +} catch { + Write-ChocolateyFailure $package "$($_.Exception.Message)" + throw +}