From 03d7a8634657a98184f1b1c2e030a66c39a6ad26 Mon Sep 17 00:00:00 2001 From: dutixlf Date: Tue, 28 Apr 2026 01:23:25 +0000 Subject: [PATCH] Add download.ps1 for beta --- download.ps1 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 download.ps1 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