scripts/Windows/install_winsdk_2004.ps1
Write-Host "Installing Windows SDK 2004 (10.0.19041.0)..." -ForegroundColor Cyan Write-Host "Downloading..." $exePath = "$env:temp\wdksetup.exe" (New-Object Net.WebClient).DownloadFile('https://go.microsoft.com/fwlink/p/?linkid=2120843', $exePath) Write-Host "Installing..." cmd /c start /wait $exePath /features + /quiet Remove-Item $exePath Write-Host "Installed" -ForegroundColor Green |