mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-18 13:18:30 +00:00
6 lines
231 B
Text
6 lines
231 B
Text
Set oWS = WScript.CreateObject("WScript.Shell")
|
|
sLinkFile = "@SHORTCUT_PATH@"
|
|
Set oLink = oWS.CreateShortcut(sLinkFile)
|
|
oLink.TargetPath = "@SHORTCUT_TARGET_PATH@"
|
|
oLink.WorkingDirectory = "@SHORTCUT_WORKING_DIRECTORY@"
|
|
oLink.Save
|