IDM 6.42 Build 22 简体中文破解安装版

01 到官网下载安装包

官网链接:点击进入  优惠码:WMHRDIDM5(适用永久版,可减5元)

02 Powershell脚本使用:

总的来说,这段代码的目的是通过管理员身份下载一个 IDM 激活脚本并运行它,同时处理可能的错误情况并在完成后清理临时文件。

2.1 具体脚本如下所示:

# Check the instructions here on how to use it https://massgrave.dev/idm-activation-script
 
$ErrorActionPreference = "Stop"
# Enable TLSv1.2 for compatibility with older clients
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
 
$DownloadURL = 'https://raw.githubusercontent.com/WindowsAddict/IDM-Activation-Script/main/IAS.cmd'
$DownloadURL2 = 'https://bitbucket.org/WindowsAddict/idm-activation-script/raw/main/IAS.cmd'
 
$rand = Get-Random -Maximum 99999999
$isAdmin = [bool]([Security.Principal.WindowsIdentity]::GetCurrent().Groups -match 'S-1-5-32-544')
$FilePath = if ($isAdmin) { "$env:SystemRoot\Temp\IAS_$rand.cmd" } else { "$env:TEMP\IAS_$rand.cmd" }
 
try {
    $response = Invoke-WebRequest -Uri $DownloadURL -UseBasicParsing
}
catch {
    $response = Invoke-WebRequest -Uri $DownloadURL2 -UseBasicParsing
}
 
$ScriptArgs = "$args "
$prefix = "@REM $rand `r`n"
$content = $prefix + $response
Set-Content -Path $FilePath -Value $content
 
Start-Process $FilePath $ScriptArgs -Wait
 
$FilePaths = @("$env:TEMP\IAS*.cmd", "$env:SystemRoot\Temp\IAS*.cmd")
foreach ($FilePath in $FilePaths) { Get-Item $FilePath | Remove-Item }

2.2 win+r快捷键调出运行窗口输入powershell

2.3 在powershell窗口里面复制脚本 (不需要其它操作了,过一会儿 , 会下载文件弹窗)

2.4 会有1,2,3,4 的选项 ,

2.4.1输入对应Activate数字继续运行 ,在一堆过后 , 然后就注册成功
2.4.2 例1 如果是这个界面 , 那么就是输入1

2.4.3 例2 如果是这个界面 , 那么就是输入2

03 成功界面展示

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值