The problem is that you are specifying arguments for EXPLORER. WSH thanks
that you are specifying a executable with a space in the path name so it
wants to put it in quotes. To get around this you need to assign the
arguments to the Arguments property
oShortCut.TargetPath = "C:\Windows\Explorer.exe "
oShortCut.Arguments = "/n /e /c:\"
oshortCut.save
-Marcus Kellermann
Josh Travinski wrote in message ...