使用python的wmi进行远程连接的时候报错
问题描述
# -*- coding: utf-8 -*-import wmi,jsonimport timeimport tracebackimport syslogfile = ’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:123.bat' #此文件在远程服务器上cmd_callbat = 'start c:123.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!rn’) % ipaddress)log.close()print traceback.print_exc(file=sys.stdout)return False return Falseif __name__==’__main__’: call_remote_bat(ipaddress='192.168.110.131', username='Administrator', password='123456')
以上是远程连接的代码,运行和报错如下:
Traceback (most recent call last): File 'D:/untitled/Զ������.py', line 11, in call_remote_bat
conn = wmi.WMI(computer=ipaddress, user=username, password=password)
File 'C:Python27libsite-packageswmi.py', line 1290, in connect
handle_com_error ()
File 'C:Python27libsite-packageswmi.py', line 241, in handle_com_error
raise klass (com_error=err)
x_wmi: <x_wmi: Unexpected COM Error (-2147352567, ’xb7xa2xc9xfaxd2xe2xcdxe2xa1xa3’, (0, u’SWbemLocator’, u’RPC u670du52a1u5668u4e0du53efu7528u3002 ’, None, 0, -2147023174), None)>None
这是什么错误,有哪位高手可以解答一下
这个报错我在主机ping通虚拟机(远程计算机)之后,运行代码,还是以上的报错,这又是什么情况呢?哪位高手帮忙解答一下,谢谢。
问题解答
回答1:看错误提示是服务器不可用啊,你需要确保你远程的服务器可以ping通,另外用户和密码要对的上。
回答2:b’xb7xa2xc9xfaxd2xe2xcdxe2xa1xa3’.decode(’gbk’)’发生意外。’u’RPC u670du52a1u5668u4e0du53efu7528u3002 ’’RPC 服务器不可用。 ’
相关文章:
1. javascript - typescript关于接口,对象字面量额外属性检测问题,为什么使用断言或者变量时就不会检测额外属性?2. html - 非微信官方网页,将由微信转换为手机预览模式3. css3 - 关于flex布局的一个问题4. javascript - 为什么当index等于5的时候,不在当前页面跳转到百度?不跳转的代码在倒数第五行5. html5 - HTML或者JS可否动态改变 .css的属性?6. javascript - 请教如何获取百度贴吧新增的两个加密参数7. 极光推送 - Android app消息推送 百度 极光 个推 信鸽哪个好一些?8. javascript - jQuery中live事件在移动微信端下没有效果;代码如下9. 【小白问题】这行python命令行程序是什么意思?10. 为什么微信内置浏览器用$_COOKIE取不到值?
