IDM激活教程

97次阅读
没有评论

共计 658 个字符,预计需要花费 2 分钟才能阅读完成。

IDM官方下载: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:TEMPIAS.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 查看激活信息,支持检测更新

脚本地址:

正文完
公众号
post-qrcode
 2
张万帅
版权声明:本站原创文章,由 张万帅 2023-09-10发表,共计658字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)