Skip to content

Commit

Permalink
Merge pull request #33 from manics/ec2launch
Browse files Browse the repository at this point in the history
Add aws_ec2launch.ps1 module
  • Loading branch information
manics authored Mar 26, 2024
2 parents 5569900 + 91e1666 commit bb4055e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/aws_ec2launch.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2launch-v2-install.html
Set-Location C:\Tools

$ProgressPreference = "SilentlyContinue" # PS progress bar is slow
$ErrorActionPreference = "Stop"

Invoke-WebRequest -Uri "https://s3.amazonaws.com/amazon-ec2launch-v2/windows/amd64/latest/AmazonEC2Launch.msi" -OutFile C:\Tools\AmazonEC2Launch.msi
msiexec /i AmazonEC2Launch.msi /quiet

0 comments on commit bb4055e

Please sign in to comment.