気軽に「こんなソフト ..
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