一、首先安装python的wmi包
二、远程调用bat以下:
复制代码 代码以下:python
# -*- 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")