Dmitry Porotnikov / Download TSS

Created Mon, 15 Jul 2024 00:00:00 +0000 Modified Mon, 15 Jul 2024 00:00:00 +0000
39 Words

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."
}