Just drag and drop the shortcut onto it to see it in action.
gunsmokingman
Oct 9 2009, 10:07 AM
Here is the VBS script way of getting the lnk path. This script can handle multiple .lnk files being drag and drop on to it self.
QUOTE
CODE
Dim Obj, Act :Set Act = CreateObject("WScript.Shell") If Not Wscript.Arguments.Count = 0 Then For Each Obj In WScript.Arguments If InStr(LCase(obj),LCase(".lnk")) Then Act.Popup vbCrLf & Act.CreateShortcut(obj).TargetPath,5,"ShortCut Path",4128 End If Next End If
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.