object(stdClass)#28 (2) { ["docs"]=> array(0) { } ["count"]=> int(0) } python远程调用bat执行命令 - 爱码网
Thriving-Heart

1、首先安装python的wmi包
2、远程调用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"D:\apps\autorun.bat"   #此文件在远程服务器上
        cmd_callbat=r"cmd /c call %s"%filename
        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(computer="192.168.1.2", user="testuser", password="testpwd")

 

分类:

技术点:

相关文章: