Does anyone know why this vbs code halts at the
oShellLink.FullName parameter??
I thought the FullName parameter could be used to specifiy where the created shortcut is saved to (by the oShellLink.Save parameter)??
**********************
Set WshShell = Wscript.CreateObject("Wscript.Shell")
Set oShellLink = WshShell.CreateShortcut("Pegasus Mail.lnk")
oShellLink.TargetPath = "P:Pegasuswinpm-32.exe"
oShellLink.FullName = "C:WindowsDesktop"
oShellLink.Save
**************************
Thanks in advance,
Ade



