Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
539 views
in Technique[技术] by (71.8m points)

cmd - Execute a batch file on a remote PC using a batch file on local PC

I want to execute a batch file

D:apache-tomcat-6.0.20apache-tomcat-7.0.30inshutdown.bat

Which is on my server inidsoasrv01.

How should I write my .bat file?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use microsoft's tool for remote commands executions: PsExec

If there isn't your bat-file on remote host, copy it first. For example:

copy D:apache-tomcat-6.0.20apache-tomcat-7.0.30inshutdown.bat \RemoteServerNameOrIPd$apache-tomcat-6.0.20apache-tomcat-7.0.30in

And then execute:

psexec \RemoteServerNameOrIP d:apache-tomcat-6.0.20apache-tomcat-7.0.30inshutdown.bat

Note: filepath for psexec is path to file on remote server, not your local.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...