summaryrefslogtreecommitdiff
path: root/build/ias.txt
diff options
context:
space:
mode:
authorWindowsAddict2024-04-12 15:43:16 +0000
committerWindowsAddict2024-04-12 15:43:16 +0000
commit0a9fb8d2326fafd4cba64c93656384a8376ad7ca (patch)
tree8b9c10f36c0f5e09ef2c45bb0f25bc643209e985 /build/ias.txt
parent90c586597c908e7414de87489a42fd8592a60828 (diff)
downloadmassgrave.dev-0a9fb8d2326fafd4cba64c93656384a8376ad7ca.zip
Add headers in tables
Diffstat (limited to 'build/ias.txt')
-rw-r--r--build/ias.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/build/ias.txt b/build/ias.txt
new file mode 100644
index 0000000..2c54bea
--- /dev/null
+++ b/build/ias.txt
@@ -0,0 +1,29 @@
+# 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 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" }
+
+try {
+ $response = Invoke-WebRequest -Uri $DownloadURL -UseBasicParsing
+}
+catch {
+ $response = Invoke-WebRequest -Uri $DownloadURL2 -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 }