summaryrefslogtreecommitdiff
path: root/_site/ias.ps1
diff options
context:
space:
mode:
authorWindowsAddict2024-04-13 00:21:13 +0000
committerWindowsAddict2024-04-13 00:21:13 +0000
commit70b3b7228ff453dbacb0e44b128e17cb69fba942 (patch)
treed67a2889720ea51adfa330df0acb922d2d4cfbc7 /_site/ias.ps1
parent8dbd3fe46d6f8ccbe8d9231e28737625ba7c9b3c (diff)
downloadmassgrave.dev-70b3b7228ff453dbacb0e44b128e17cb69fba942.zip
Remove _site folder
Diffstat (limited to '_site/ias.ps1')
-rw-r--r--_site/ias.ps129
1 files changed, 0 insertions, 29 deletions
diff --git a/_site/ias.ps1 b/_site/ias.ps1
deleted file mode 100644
index 2c54bea..0000000
--- a/_site/ias.ps1
+++ /dev/null
@@ -1,29 +0,0 @@
-# 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 }