0

I have a batch file I run that, among other things, reset's the NICs in the machine. I have some watchdog software running on another machine that monitors the first one. I'd like to run this batch file using PSExec when it detects certain types of failures. The problem I'm having is that since the batch file reset's the NIC's it kills the connection PSExec has (I'm OK with that). The real issue is that when PSExec dies the batch file stops running (leaving the NIC's disabled).

I've tried using the -i option with PSExec with no luck. Any ideas about basically just fire off the batch file and NOT have it stop when PSExec is disconnected?

Paul Mrozowski
  • 415
  • 2
  • 6
  • 13

4 Answers4

5

And, as usually, I figure things out 10 minutes after asking the question. It turns out I had the parameters in the wrong order. Here's what worked:

psexec \\MyServer -i -d C:\Misc\ResetNICs.bat
Paul Mrozowski
  • 415
  • 2
  • 6
  • 13
  • Ha! I should have looked a little harder at what you were doing. It would have saved me 15 minutes worth of fixing something that wasn't broken. =) – Nathan Hartley Jul 17 '09 at 18:30
1

Use the START command to run things asynchronously. The trick here though, is that START can not be called directly through PSExec. Calling it through the command interpreter will get around this limitation. Like so...

psexec \\RemoteMachine cmd.exe /c start c:\test.bat

Or if you want more power, you could call psexec on the remote machine with the -d parameter, similar to the START command above.

Nathan Hartley
  • 1,660
  • 5
  • 26
  • 40
1

the best way to do it is this:

PsExec.exe \\server -s -d  cmd /c \\servershared\shared\install.cmd

-s (run as system) -d (non interactive)

of course the remote machine have to had the c$ shared, and you need to be "domain admin"

of if you are not "domain admin" you can use the -u and -p params to pass your user and password, example:

PsExec.exe \\server -u user p password -d  cmd /c \\servershared\shared\install.cmd
user2948547
  • 111
  • 1
0

How about using the SOON.exe from the Windows Resource kit to schedule the batch file in a few seconds.

ggonsalv
  • 390
  • 1
  • 12