diff options
| author | WindowsAddict | 2024-04-12 20:52:46 +0000 |
|---|---|---|
| committer | WindowsAddict | 2024-04-12 20:52:46 +0000 |
| commit | 49b6a863a3908bb879ea1fbc80927af381964357 (patch) | |
| tree | 7111b2b63f2fc1df5bcd091f73955c202eaedb08 /build/ias.ps1 | |
| parent | ee5954b250a0357acf8708396d1e118e16183de2 (diff) | |
| download | massgrave.dev-49b6a863a3908bb879ea1fbc80927af381964357.zip | |
Finally, deploy Docusaurus generated site in production
Goodbye Rmarkdown
Diffstat (limited to 'build/ias.ps1')
| -rw-r--r-- | build/ias.ps1 | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/build/ias.ps1 b/build/ias.ps1 deleted file mode 100644 index 2c54bea..0000000 --- a/build/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 }
|
