Add download.ps1 for beta

This commit is contained in:
2026-04-28 01:23:25 +00:00
commit 03d7a86346

9
download.ps1 Normal file
View File

@@ -0,0 +1,9 @@
$url = "https://git.scamhost.online/fear/apps/archive/beta.zip"
$destPath = "C:\SS"
$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