登录

python使用wmi实现远程计算机.bat文件调用

-- coding: utf-8 --

import wmi,json
import time
logfile = 'logs_%s.txt' % time.strftime('%Y-%m-%d_%H-%M-%S', time.localtime())

远程执行bat文件

def call_remote_bat(ipaddress,username,password):

try:
    #用wmi连接到远程服务器
    conn = wmi.WMI(computer=ipaddress, user=username, password=password)
    filename=r"C:\abc.bat"   #此文件在远程服务器上
    cmd_callbat=r"start C:\abc.bat"
    conn.Win32_Process.Create(CommandLine=cmd_callbat)  #执行bat文件
    print "执行成功!"
    return True
except Exception,e:
    log = open(logfile, 'a')
    log.write(('%s, call bat Failed!\r\n') % ipaddress)
    log.close()
    return False
return False

if __name__=='__main__':

call_remote_bat("ipaddress", "username", "password")


代码是这样的  为什么会一直成功不了,请哪位高手帮忙看一下
# Python
巴扎黑 巴扎黑 2529 天前 860 次浏览

全部回复(1) 我要回复

  • 巴扎黑

    巴扎黑2017-05-18 10:50:37

    首先先确保有执行的权限,然后再确保你bat中的操作是成功的。

    回复
    0
  • 取消 回复 发送