使用 Powershell 编辑快捷方式 (.lnk) 属性
我找到了一种令人讨厌的 VBS 方法来执行此操作,但我正在寻找一个本机 PoSh 过程来编辑 .LNK 文件的属性。 目标是连接到远程计算机,复制具有大多数正确属性的现有快捷方式,并编辑其中的一些属性。
如果编写新的快捷方式文件会更容易,那也可以。
I've found a nasty VBS way to do this, but I'm looking for a native PoSh procedure to edit the properties of a .LNK file. The goal is to reach out to remote machines, duplicate an existing shortcut with most of the correct properties, and edit a couple of them.
If it would just be easier to write a new shortcut file, that would work too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
以下是我用来处理 .lnk 文件的函数。 它们是
Below are the functions I use for dealing with .lnk files. They are modified versions of the functions found here as mentioned by @Nathan Hartley. I've improved
Get-Shortcut
to handle wildcards like*
by passing strings todir
to expand them into sets of FileInfo objects.对 @JasonMArcher 答案的简短补充。
要查看可用属性,您只需在 中的
$shortcut = $shell.CreateShortcut($destination)
之后运行$shortcut
PS。。这将打印所有属性及其当前值。
A short addition to @JasonMArcher's answer..
To see available properties you can just run
$shortcut
after$shortcut = $shell.CreateShortcut($destination)
in a PS.This will print all properties and their current values.
我不认为有一种本土的方式。
有一个 DOS 实用程序:Shortcut.exe。
您仍然需要将 util 复制到远程系统,然后可能使用 WMI 调用它来进行所需的更改。
我认为更简单的方法是覆盖和/或创建一个新文件。
您可以通过远程共享访问这些系统吗?
I don't think there's a native way.
There is this DOS util: Shortcut.exe.
You still need to copy the util to the remote system, then possibly call it using WMI to make the changes you're looking for.
I'm thinking the easier way will be to overwrite and/or create a new file.
Do you have access to these systems via a remote share?
在这里找到了VB版本的代码:
http:// www.tutorialized.com/view/tutorial/Extract-the-target-file-from-a-shortcut-file-.lnk/18349
Found the VB version of the code here:
http://www.tutorialized.com/view/tutorial/Extract-the-target-file-from-a-shortcut-file-.lnk/18349