一鍵激活IDM

圖片[1]-一鍵激活IDM

此腳本應用注冊表鎖定方法來激活 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
喜歡就支持一下吧
點贊1223 分享
評論 共51條

請登錄后發表評論