From b505afc7d37bcf4abb2ba04dba81a9552fd38a90 Mon Sep 17 00:00:00 2001 From: WindowsAddict Date: Wed, 29 Nov 2023 21:37:26 +0530 Subject: IAS 0.9 --- _site/ias.ps1 | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to '_site/ias.ps1') diff --git a/_site/ias.ps1 b/_site/ias.ps1 index 02d5bb3..2c54bea 100644 --- a/_site/ias.ps1 +++ b/_site/ias.ps1 @@ -1,14 +1,22 @@ +# Check the instructions here on how to use it https://massgrave.dev/idm-activation-script + $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' +$DownloadURL2 = 'https://bitbucket.org/WindowsAddict/idm-activation-script/raw/main/IAS.cmd' -$rand = Get-Random -Maximum 1000 +$rand = Get-Random -Maximum 99999999 $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 +try { + $response = Invoke-WebRequest -Uri $DownloadURL -UseBasicParsing +} +catch { + $response = Invoke-WebRequest -Uri $DownloadURL2 -UseBasicParsing +} $ScriptArgs = "$args " $prefix = "@REM $rand `r`n" -- cgit v1.2.3