Показать сообщение отдельно
  #2 (permalink)  
Старый 28.01.2017, 10:18
Профессор
Отправить личное сообщение для laimas Посмотреть профиль Найти все сообщения от laimas
 
Регистрация: 14.01.2015
Сообщений: 12,989

VBS

Set WshShell = CreateObject("WScript.Shell")
path = WshShell.CurrentDirectory + "\"
fldr = WshShell.SpecialFolders("Desktop") + "\"

Set WshShortcut = WshShell.CreateShortcut(fldr + "test.lnk")
WshShortcut.IconLocation ="shell32.dll, 1"
WshShortcut.Description = "Test"
WshShortcut.Arguments = "C:\file.txt"
WshShortcut.TargetPath =  "notepad.exe"
WshShortcut.WindowStyle = 1
WshShortcut.WorkingDirectory = path
WshShortcut.Save

WshShell.Run fldr + "test.lnk"

Последний раз редактировалось laimas, 28.01.2017 в 10:20.
Ответить с цитированием