本文提供两种激活方法,方法一需要下载CMD脚本后运行,方法二直接复制CMD代码激活。本文提供的激活方法仅限于windows。适用IDM官方最新版本激活。

脚本下载

Github地址:https://github.com/lstprjct/IDM-Activation-Script
国内分流下载:https://url85.ctfile.com/f/21259585-910543695-8b62c8?p=9197 (访问密码: 9197)

激活方法一

  1. 下载官网最新版IDM:https://www.internetdownloadmanager.com
  2. 安装IDM软件
  3. 运行注册脚本【IAS_0.8.cmd】,选择【1】完成激活。
    niuc.org
  4. 软件激活成功!
    niuc.org

激活方法二

  1. 下载官网最新版IDM:https://www.internetdownloadmanager.com
  2. 安装IDM软件
  3. 打开Windows PowerShell管理器或者CMD复制以下脚本运行。

    # 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()
    }
  4. 运行以上脚本选择1,输入用户名等待激活,激活完毕输入6退出脚本。
最后修改:2023 年 08 月 11 日
如果觉得我的文章对你有用,请随意赞赏