PowerShell: Script to download TSS toolkit
$url = "https://aka.ms/getTSS"
$outputPath = "$env:USERPROFILE\Downloads\TSS.zip"
Invoke-WebRequest -Uri $url -OutFile $outputPath
if (Test-Path $outputPath) {
Write-Host "File successfully downloaded and saved to: $outputPath"
} else {
Write-Host "Failed to download the file."
}