気軽に「こんなソフト ..
[2ch|▼Menu]
151:名無しさん@お腹いっぱい。
10/02/02 14:51:04 CQ6jBDni0
>>148
WSHで。

ショートカットを作る例。値の取得もCreateShortcutで可能。後は適当にループ回す。
set WshShell = WScript.CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop")
set oShellLink = WshShell.CreateShortcut(strDesktop & "\Shortcut Script.lnk")
oShellLink.TargetPath = "c:\〜\a.exe"
oShellLink.Arguments = """d:\〜\b.txt"""
oShellLink.WindowStyle = 1
oShellLink.Hotkey = "CTRL+SHIFT+F"
oShellLink.IconLocation = "notepad.exe, 0"
oShellLink.Description = "Shortcut Script"
oShellLink.WorkingDirectory = strDesktop
oShellLink.Save


次ページ
続きを表示
1を表示
最新レス表示
スレッドの検索
類似スレ一覧
話題のニュース
おまかせリスト
▼オプションを表示
暇つぶし2ch

5364日前に更新/257 KB
担当:undef