尝试使用PowerShell创建快捷方式时引发错误

时间:2016-01-21 21:13:18

标签: windows powershell batch-file

我完全不熟悉PowerShell,但我仍尝试使用它。我正在努力为我的IT部门自动化操作系统构建,除了创建快捷方式之外,我几乎完成了所有工作。我找到了这个主题:How to run a PowerShell script from a batch file告诉我如何使用PowerShell来做到这一点。

当我运行此命令时(保存到默认用户配置文件的桌面)它会抛出错误。

POWERSHELL:

$WshShell = New-Object -comObject WScript.Shell

$Shortcut = $WshShell.CreateShortcut("C:\Users\Default\Desktop\ReadMe.lnk")

$Shortcut.TargetPath = "C:\Program Files (x86)\Adobe\Acrobat 10.0\ReadMe.htm"

$Shortcut.Save()

命令:

Powershell.exe -executionpolicy remotesigned -File "C:\Users\trw68319\Desktop\Powershell Shortcuts.ps1"

enter image description here

我怀疑这是因为默认用户是一个隐藏目录(我尝试使用不同的目录并且它有效)。有人可以告诉我是否可以在保存到默认(隐藏)用户目录时完成此任务?

由于

0 个答案:

没有答案