Files
runner-images/images/win/scripts/Installers/Install-NET48.ps1
Shady Ibraheem 402d878986 Revert "Update Install-NET48.ps1"
This reverts commit 2323151afc.
2019-12-18 17:59:48 -05:00

14 lines
635 B
PowerShell

################################################################################
## File: Install-NET48.ps1
## Desc: Install .NET 4.8
################################################################################
Import-Module -Name ImageHelpers -Force
# .NET 4.8 Dev pack
$InstallerURI = "https://download.visualstudio.microsoft.com/download/pr/7afca223-55d2-470a-8edc-6a1739ae3252/c8c829444416e811be84c5765ede6148/NDP48-DevPack-ENU.exe"
$InstallerName = "NDP48-DevPack-ENU.exe"
$ArgumentList = ('Setup', '/passive', '/norestart' )
Install-EXE -Url $InstallerURI -Name $InstallerName -ArgumentList $ArgumentList