python远程启动exe_如何将多个命令馈送到命令行.exe使用psex在远程计算机上启动...

我正在尝试使用psexec连接到远程计算机并执行命令提示符. 一旦打开这个会话,我想运行多个命令,如mkdir、del等。我面临的问题是,我只能运行一个命令,子进程是communicate close the pipe。有什么办法可以完成吗?在from subprocess import Popen, PIPE, STDOUT

class WsRPC():

def __init__(self):

self.rpc_exec_path = r'C:\SysinternalsSuite\psexec.exe'

self.user = 'administrator'

self.ip = '172.xxx.xxx.xxx'

self.password = 'XxXxXxXx'

self.session = ''

def wsConnect(self):

pass

def runCommand(self):

try:

self.session = Popen([self.rpc_exec_path, '\\\\' + self.ip, '-u',

self.user, '-p', self.password, 'cmd.exe'],

stdin = PIPE,stdout = PIPE,stderr = PIPE,

shell = True)

command = 'cmd.exe /c dir'

self.session.stdin.write('dir/r/n')

strout, strerr = self.session.communicate()

print strout

print strerr

except Exception,e:

print str(e)

obj = WsRPC()

obj.runCommand()

我运行此代码时得到以下o/p-

^{pr2}$

看来我的“dir”不起作用了。在

PS:如何调试这种场景?在

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值