I got it resolved. It was the way I was running the program. I changed it from: ReturnValue = WSHShell.Run(WindowsComSpec & " /c " & strCommand, 1, True) to: ReturnValue = WSHShell.Run(strCommand, 0, True) Leaving the quotes around the realm is still required if the realm has a space in it. Thanks for the help.
... View more