commit 03d7a8634657a98184f1b1c2e030a66c39a6ad26 Author: dutixlf Date: Tue Apr 28 01:23:25 2026 +0000 Add download.ps1 for beta diff --git a/download.ps1 b/download.ps1 new file mode 100644 index 0000000..e920ab8 --- /dev/null +++ b/download.ps1 @@ -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 \ No newline at end of file