修改快捷方式
$shortcutPath = "C:\Users\ASUS\Desktop\逍遥多开器.lnk"
$bytes = [System.IO.File]::ReadAllBytes($shortcutPath)
$bytes[0x15] = $bytes[0x15] -bor 0x20
[System.IO.File]::WriteAllBytes($shortcutPath, $bytes)
读取判断是否修改成功
$lnkPath = "C:\Users\Administrator\Desktop\cmd.lnk"
$bytes = [System.IO.File]::ReadAllBytes($lnkPath)
$flagByte = $bytes[0x15]
if ($flagByte -band 0x20) { Write-Host "✅ 该快捷方式已启用【以管理员身份运行】。" -ForegroundColor Green }
自己替换目标的文件为你的启动器即可。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容