29

在我的 PowerShell 脚本中,我创建了一个 .exe 的快捷方式(使用类似于这个问题的答案):

$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("$Home\Desktop\ColorPix.lnk")
$Shortcut.TargetPath = "C:\Program Files (x86)\ColorPix\ColorPix.exe"
$Shortcut.Save()

现在,当我创建快捷方式时,如何添加到脚本以使其默认以管理员身份运行?

4

2 回答 2

52

这个答案是对这个问题的一个很好的答案的 PowerShell 翻译 How can I use JScript to create a shortcut that uses "Run as Administrator"

简而言之,您需要将 .lnk 文件作为字节数组读取。找到字节 21 (0x15) 并将位 6 (0x20) 更改为 1。这是 RunAsAdministrator 标志。然后将字节数组写回到 .lnk 文件中。

在您的代码中,这将如下所示:

$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("$Home\Desktop\ColorPix.lnk")
$Shortcut.TargetPath = "C:\Program Files (x86)\ColorPix\ColorPix.exe"
$Shortcut.Save()

$bytes = [System.IO.File]::ReadAllBytes("$Home\Desktop\ColorPix.lnk")
$bytes[0x15] = $bytes[0x15] -bor 0x20 #set byte 21 (0x15) bit 6 (0x20) ON
[System.IO.File]::WriteAllBytes("$Home\Desktop\ColorPix.lnk", $bytes)

如果有人想更改.LNK文件中的其他内容,您可以参考Microsoft 官方文档

于 2015-03-12T05:03:21.070 回答
-2

您可以为此使用 -Elevate true 开关:

    CreateShortcut -name "myApp" -Target 
    "${env:ProgramFiles}\mApp\myApp.exe" -OutputDirectory 
    "C:\Users\Public\Desktop" -Elevated True
于 2019-10-14T12:56:17.773 回答