Create a shortcut or .lnk file.
Create a shortcut or .lnk file.
Rate Create a shortcut or .lnk file.
(1(1 Vote))
Set WSHShell = CreateObject("WScript.Shell")
Set f = WSHShell.CreateShortcut(lnk_name & ".lnk")
f.TargetPath = target
f.WorkingDirectory = work_dir
f.WindowStyle = Window_style
If icon_file <> "none" Then f.IconLocation = WSHShell.ExpandEnvironmentStrings(icon_file & ", " & icon_index)
f.Save
End Sub
Create a shortcut or .lnk file. Comments
No comments yet — be the first to post one!
Post a Comment