diff options
| author | WindowsAddict | 2023-08-09 22:52:29 +0000 |
|---|---|---|
| committer | WindowsAddict | 2023-08-09 22:52:29 +0000 |
| commit | d3e9b180a97fdcc46f46ab517fb690d6134228b6 (patch) | |
| tree | 0811cb3102d365b83eedd3bc5a4a9d445cc9fb53 /ias.ps1 | |
| parent | 1664089d7628cc6d38e6b08f60311fa2137ba963 (diff) | |
| download | massgrave.dev-d3e9b180a97fdcc46f46ab517fb690d6134228b6.zip | |
Add IAS
Diffstat (limited to 'ias.ps1')
| -rw-r--r-- | ias.ps1 | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -0,0 +1,21 @@ +$ErrorActionPreference = "Stop"
+# Enable TLSv1.2 for compatibility with older clients
+[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
+
+$DownloadURL = 'https://raw.githubusercontent.com/WindowsAddict/IDM-Activation-Script/main/IAS.cmd'
+
+$rand = Get-Random -Maximum 1000
+$isAdmin = [bool]([Security.Principal.WindowsIdentity]::GetCurrent().Groups -match 'S-1-5-32-544')
+$FilePath = if ($isAdmin) { "$env:SystemRoot\Temp\IAS_$rand.cmd" } else { "$env:TEMP\IAS_$rand.cmd" }
+
+$response = Invoke-WebRequest -Uri $DownloadURL -UseBasicParsing
+
+$ScriptArgs = "$args "
+$prefix = "@REM $rand `r`n"
+$content = $prefix + $response
+Set-Content -Path $FilePath -Value $content
+
+Start-Process $FilePath $ScriptArgs -Wait
+
+$FilePaths = @("$env:TEMP\IAS*.cmd", "$env:SystemRoot\Temp\IAS*.cmd")
+foreach ($FilePath in $FilePaths) { Get-Item $FilePath | Remove-Item }
|
