The following code displays all shortcuts on a PC along with the path
and target. How can I modify this to find a specific shortcut? I
can't seem to find any documentation on this.
Set colItems = objWMIService.ExecQuery("Select * from
Win32_ShortcutFile",,48)
For Each objItem in colItems
Wscript.Echo "Name: " & objItem.Name
Wscript.Echo "Target: " & objItem.Target
Next