系统相关
首页 > 系统相关> > powershell创建文件快捷方式

powershell创建文件快捷方式

作者:互联网

#目标文件路径,$home获取本用户路径

$ShortcutFile = "$home\Desktop\文件名称.lnk"
$WScriptShell = New-Object -ComObject WScript.Shell
$Shortcut = $WScriptShell.CreateShortcut($ShortcutFile)

#源文件路径带后缀
$Shortcut.TargetPath = "源文件路径"
$Shortcut.Save()

标签:ShortcutFile,创建,路径,Shortcut,源文件,WScriptShell,home,快捷方式,powershell
来源: https://www.cnblogs.com/dewangfu/p/16444313.html