Basically I want to create a shortcut, with a filename that I can locate later for cleanup purposes, but with a different display name under explorer.
Using the script below, I get an Icon called RRDB1, whereas I would have liked it to be called "Master Database". The description property does not appear to work under NT4.
Code:
set lnk = wsh.createShortcut( desktoppath & "\rrdb1.lnk" )
lnk.targetPath = "c:\rr\dbinit.vbs"
lnk.description = "Master Database"
lnk.arguments = sDBfilename
lnk.workingDirectory = "c:\rr"
lnk.save
Cheers,
Simon...