115

我想用 PowerShell 为这个可执行文件创建一个快捷方式:

C:\Program Files (x86)\ColorPix\ColorPix.exe

如何才能做到这一点?

4

2 回答 2

170

我不知道 powershell 中的任何本机 cmdlet,但您可以使用 com 对象:

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

您可以在 $pwd 中创建一个 powershell 脚本另存为 set-shortcut.ps1

param ( [string]$SourceExe, [string]$DestinationPath )

$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut($DestinationPath)
$Shortcut.TargetPath = $SourceExe
$Shortcut.Save()

并这样称呼它

Set-ShortCut "C:\Program Files (x86)\ColorPix\ColorPix.exe" "$Home\Desktop\ColorPix.lnk"

如果要将参数传递给目标 exe,可以通过以下方式完成:

#Set the additional parameters for the shortcut  
$Shortcut.Arguments = "/argument=value"  

$Shortcut.Save() 之前。

为方便起见,这里是 set-shortcut.ps1 的修改版本。它接受参数作为其第二个参数。

param ( [string]$SourceExe, [string]$ArgumentsToSourceExe, [string]$DestinationPath )
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut($DestinationPath)
$Shortcut.TargetPath = $SourceExe
$Shortcut.Arguments = $ArgumentsToSourceExe
$Shortcut.Save()
于 2012-03-14T12:23:29.500 回答
53

从 PowerShell 5.0 开始New-ItemRemove-ItemGet-ChildItem已得到增强,以支持创建和管理符号链接。ItemType参数接受一个新New-Item值 SymbolicLink。现在,您可以通过运行 New-Item cmdlet 在一行中创建符号链接。

New-Item -ItemType SymbolicLink -Path "C:\temp" -Name "calc.lnk" -Value "c:\windows\system32\calc.exe"

注意SymbolicLinkShortcut不同,快捷方式只是一个文件。它们有一个大小(一个小的,只引用它们指向的位置)并且它们需要一个应用程序来支持该文件类型才能使用。符号链接是文件系统级别的,一切都将其视为原始文件。应用程序不需要特殊支持即可使用符号链接。

无论如何,如果您想使用 Powershell 创建以管理员身份运行的快捷方式,您可以使用

$file="c:\temp\calc.lnk"
$bytes = [System.IO.File]::ReadAllBytes($file)
$bytes[0x15] = $bytes[0x15] -bor 0x20 #set byte 21 (0x15) bit 6 (0x20) ON (Use –bor to set RunAsAdministrator option and –bxor to unset)
[System.IO.File]::WriteAllBytes($file, $bytes)

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

于 2015-03-12T05:45:10.687 回答