vote up 0 vote down star

I need the correct way to accomplish this via a vbscript.

This works fine from command prompt:

psexec \\99.99.99.99 -u username -p password cmd.exe /c ver > output.txt

From the vbscript:

sTempFile = objFSO.GetTempName
sCmd = "psexec \\" & sIP & " -u " & sDomain & "\" & sUser & " -p " & sPassword & "    cmd /c ver  > " &  sTempFile 

WSHShell.Run sCmd, 1, True

I always get a runtime error: File not found

Thanks, Sam

flag
I just foundd out it is creating the file on the remote machine. I need it in the local machine. – sam Sep 9 at 12:03

1 Answer

vote up 0 vote down

Dont know why but adding cmd /c also before psexec did the trick.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.