Add .NET 4.0 script back in.

Let's keep this file even though it's not actively being used.
IMO it's better to have a large collection of working install
scripts that we can use as needed. This will make sure it is
available if needed in the future.
This commit is contained in:
James Barnett 2017-07-27 11:19:43 -05:00
parent 81571c9ff4
commit 0ddaf0c8b9
No known key found for this signature in database
GPG Key ID: 647983861A4EC5EA
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# setup dotnetfx4
$netfx_url = "https://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe"
Write-Output "Downloading $netfx_url"
(New-Object System.Net.WebClient).DownloadFile($netfx_url, "C:\Windows\Temp\dotNetFx40_Full_x86_x64.exe")
Write-Output "Starting Install of dotNetFx40_Full_x86_x64.exe"
Start-Process "C:\Windows\Temp\dotNetFx40_Full_x86_x64.exe" "/q /norestart" -Wait