侧边栏壁纸
博主头像
爱新觉罗·花泽李

做一个分享快乐的小小网站✨

  • 累计撰写 493 篇文章
  • 累计创建 79 个标签
  • 累计收到 204 条评论

目 录CONTENT

文章目录

✅一键激活IDM

爱新觉罗·花泽李
2023-08-08 / 0 评论 / 2 点赞 / 443 阅读 / 173 字 / 正在检测是否收录...
温馨提示:
本文最后更新于 2023-08-08,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

image-1691486671476

# 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()
}

⚙️使用

1️⃣复制上方代码到 PowerShell 并运行,然后在弹窗输入 1
2️⃣输入自定义用户名再按回车,激活完毕输入 6 退出
3️⃣激活之后可以在 IDM 查看激活信息,支持检测更新

💥地址

源于@geekshare

2
广告 广告

评论区