* ショートカット(lnk)の作成 [#a84162d6]

 $WshShell = New-Object -ComObject WScript.Shell
 $ShortCut = $WshShell.CreateShortcut("C:\tmp\mycalc.lnk")
 $ShortCut.TargetPath = "calc.exe"
 $ShortCut.Save()

- ショートカットとシムリンクは別のものなので注意。
- CreateShortcut()の引数は絶対パスが必要なようだ。

** 参考 [#qbcfc8a1]
http://www.computerperformance.co.uk/powershell/powershell_create_shortcut.htm

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