added ata install script
This commit is contained in:
11
Vagrant/scripts/install_microsoft_ata.ps1
Normal file
11
Vagrant/scripts/install_microsoft_ata.ps1
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user