2010年11月27日土曜日

◆ショートカットを作る

WSHで定番のショートカット作成。

001
002
003
004
005
006
007

$wsh = New-Object -comObject WScript.Shell
$link = $wsh.CreateShortcut("D:\desktop\notepad.lnk")
$link.TargetPath = "notepad.exe"
$link.Description = "メモ帳"
$link.WorkingDirectory = 
$home
$link
.IconLocation = "notepad.exe"
$link.Save()

2 件のコメント:

  1. 2014/08/25
    Windows 7 64bitで試しましたが動きませんでした。

    返信削除
  2. 当方のWindows7 64bit環境では問題ないようでした。

    エラーメッセージなどを教えていただければ何かしらお役に立てるかもしれません。

    返信削除