![圖片[1]-一鍵激活IDM](http://www.oilmaxhydraulic.com.cn/wp-content/uploads/2023/08/d2b5ca33bd224450.png)
此腳本應用注冊表鎖定方法來激活 Internet 下載管理器 (IDM)
復制 項目代碼
# Enable TLSv1.2 for compatibility with older clients
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12
$DownloadURL = 'https://raw.githubusercontent.com/lstprjct/IDM-Activation-Script/main/IAS_0.8.cmd'
$FilePath = "$env:TEMP\IAS.cmd"
try {
Invoke-WebRequest -Uri $DownloadURL -UseBasicParsing -OutFile $FilePath
} catch {
Write-Error $_
Return
}
if (Test-Path $FilePath) {
Start-Process $FilePath -Wait
$item = Get-Item -LiteralPath $FilePath
$item.Delete()
}
到 PowerShell 并運行,然后在彈窗輸入 1
輸入自定義用戶名再按回車,激活完畢輸入 6 退出
激活之后可以在 IDM 查看激活信息,支持檢測更新
激活后,如果在某些情況下,IDM 開始顯示激活導航屏幕,則只需再次運行激活選項即可。
IDM更新可以直接安裝,無需再次激活。
地址:
? 版權聲明
THE END










- 最新
- 最熱
只看作者