ショートカット(lnk)の作成

 $WshShell = New-Object -ComObject WScript.Shell
 $ShortCut = $WshShell.CreateShortcut("C:\tmp\mycalc.lnk")
 $ShortCut.TargetPath = "calc.exe"
 $ShortCut.Save()
  • ショートカットとシムリンクは別のものなので注意。
  • CreateShortcut()の引数は絶対パスが必要なようだ。

参考

http://www.computerperformance.co.uk/powershell/powershell_create_shortcut.htm


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2016-07-01 (金) 01:36:21