YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* ショートカット(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/powershel...
終了行:
* ショートカット(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/powershel...
ページ名: