From 932f9143fc686b3cd903a5a5691599dae485038b Mon Sep 17 00:00:00 2001 From: "h.hofs" Date: Fri, 4 May 2018 13:15:42 +0200 Subject: [PATCH] added ata install script --- Vagrant/scripts/install_microsoft_ata.ps1 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Vagrant/scripts/install_microsoft_ata.ps1 diff --git a/Vagrant/scripts/install_microsoft_ata.ps1 b/Vagrant/scripts/install_microsoft_ata.ps1 new file mode 100644 index 0000000..77b1547 --- /dev/null +++ b/Vagrant/scripts/install_microsoft_ata.ps1 @@ -0,0 +1,11 @@ +# Purpose: Downloads and installs a copy of the Palantir WEF Github Repo. This includes WEF subscriptions and custom WEF channels. + +Write-Host "Downloading Microsoft ATA 1.9..." + +Invoke-WebRequest -Uri "http://download.microsoft.com/download/4/9/1/491394D1-3F28-4261-ABC6-C836A301290E/ATA1.9.iso" -OutFile $env:temp\ATA1.9.iso + +$Mount = Mount-DiskImage -ImagePath $env:temp\ATA1.9.iso -StorageType ISO -Access ReadOnly -PassThru +$Volume = $Mount | Get-Volume +Set-Location ($Volume.DriveLetter + ":") + +& '.\Microsoft ATA Center Setup.exe' /q --LicenseAccepted NetFrameworkCommandLineArguments="/q" --EnableMicrosoftUpdate \ No newline at end of file