massgrave.dev/get.ps1

34 lines
1.5 KiB
PowerShell
Raw Normal View History

2024-02-14 07:15:10 +01:00
# Check the instructions here on how to use it mass grave[.]dev
2024-02-14 06:57:36 +01:00
$ErrorActionPreference = "Stop"
# Enable TLSv1.2 for compatibility with older clients
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
2024-03-26 22:31:38 +01:00
$CommonURLPart = 'MAS/All-In-One-Version/MAS_AIO-CRC32_60BA35A8.cmd'
2024-03-18 08:44:33 +01:00
$DownloadURL1 = 'https://bitbucket.org/WindowsAddict/microsoft-activation-scripts/raw/master/' + $CommonURLPart
$DownloadURL2 = 'https://codeberg.org/massgravel/Microsoft-Activation-Scripts/raw/branch/master/' + $CommonURLPart
$DownloadURL3 = 'https://raw.githubusercontent.com/massgravel/Microsoft-Activation-Scripts/master/' + $CommonURLPart
2024-02-14 06:57:36 +01:00
$rand = Get-Random -Maximum 99999999
$isAdmin = [bool]([Security.Principal.WindowsIdentity]::GetCurrent().Groups -match 'S-1-5-32-544')
$FilePath = if ($isAdmin) { "$env:SystemRoot\Temp\MAS_$rand.cmd" } else { "$env:TEMP\MAS_$rand.cmd" }
2024-03-18 08:44:33 +01:00
$RandomURL = Get-Random -InputObject $DownloadURL1, $DownloadURL2
2024-02-14 06:57:36 +01:00
try {
2024-03-18 08:44:33 +01:00
$response = Invoke-WebRequest -Uri $RandomURL -UseBasicParsing
2024-02-14 06:57:36 +01:00
}
catch {
2024-03-18 08:44:33 +01:00
$response = Invoke-WebRequest -Uri $DownloadURL3 -UseBasicParsing
2024-02-14 06:57:36 +01:00
}
$ScriptArgs = "$args "
$prefix = "@:: $rand `r`n"
2024-02-14 06:57:36 +01:00
$content = $prefix + $response
Set-Content -Path $FilePath -Value $content
Start-Process $FilePath $ScriptArgs -Wait
$FilePaths = @("$env:TEMP\MAS*.cmd", "$env:SystemRoot\Temp\MAS*.cmd")
foreach ($FilePath in $FilePaths) { Get-Item $FilePath | Remove-Item }