主頁(yè) > 知識(shí)庫(kù) > linux 遠(yuǎn)程控制windows系統(tǒng)下的程序(三種方法)

linux 遠(yuǎn)程控制windows系統(tǒng)下的程序(三種方法)

熱門標(biāo)簽:湖北ai智能電銷機(jī)器人 AI電銷機(jī)器人 源碼 新科美甲店地圖標(biāo)注 新邵電銷機(jī)器人企業(yè) 高德地圖標(biāo)注論壇 北海市地圖標(biāo)注app 外呼系統(tǒng)打哪顯哪 江西外呼系統(tǒng) 蘭州ai電銷機(jī)器人招商

有時(shí)候我們需要通過在linux上遠(yuǎn)程運(yùn)行windows系統(tǒng)上的程序。

方法一:

通過python中的 winrm模塊,前提條件,先提前設(shè)置好winrm服務(wù)。如何設(shè)置請(qǐng)自行百度,winRM服務(wù)是windows server下PowerShell的遠(yuǎn)程管理服務(wù)。Python腳本通過連接winRM模塊操作windows命令行。

import winrm
def cmd_views(ip,cmd_comand):
  win = winrm.Session('http://'+ip+':5985/wsman', auth=('user', 'password'))#參數(shù)為用戶名和密碼
  r = win.run_cmd(cmd_comand) # 執(zhí)行cmd命令=
  return r.std_out # 打印獲取到的信息
  
ip="xxx.xxx.xx.xx"
cmd_comand=r"ipconfig"#運(yùn)行命令

a=cmd_views(ip, cmd_comand)
print(cmd_comand)
print(type(a))
print(a)

經(jīng)過本人測(cè)試這個(gè)模塊只能執(zhí)行一些簡(jiǎn)單的命令,就是那種基本上能一輸入就能立馬響應(yīng)結(jié)果的命令。碰到一些稍微復(fù)雜的,進(jìn)程就掛掉了。

方法二:

通過python中的telnetlib庫(kù)進(jìn)行執(zhí)行操作,前提設(shè)置windows系統(tǒng)中的telnet設(shè)置,1,安裝telnet客戶端和服務(wù)器端。2配置telnet用戶權(quán)限,不會(huì)就自行百度設(shè)置。

# -- coding: utf-8 --
import telnetlib,time

def telnetlib_views(ipaddress,user,password,cmdname):
  tn=telnetlib.Telnet(ipaddress)
  a=tn.read_until(b'login:')
  tn.write(user.encode('ascii') + b'\r\n')
  tn.read_until(b'password:')
  time.sleep(5)
  tn.write(password.encode('ascii') + b'\r\n')
  time.sleep(2)
  tn.write(cmdname.encode('ascii') + b'\r\n')
  tn.close()
cmdname=r'ifconfig'#運(yùn)行命令
telnetlib_views(ipaddress="xxx.xxx.xxx.xxx", user="xxx", password="xxxx",cmdname=cmdname)

等待命令調(diào)用完成,程序結(jié)束。

方法三

利用wmi模塊,缺陷只能通過windows-windows,linux-windows行不通,linux相關(guān)模塊無(wú)法安裝。

import wmi
def sys_version(ipaddress, user, password,cmdname):
  conn = wmi.WMI(computer=ipaddress, user=user, password=password)
  try:
    cmd_callbat = r"cmd /c call %s" % cmdname
    print("當(dāng)前執(zhí)行bat 命令為:",cmd_callbat)
    conn.Win32_Process.Create(CommandLine=cmd_callbat)
  except Exception as e:
    print(e)
cmdname= r"xxx.bat"#運(yùn)行命令
sys_version(ipaddress="xxx.xx.xx.xx", user="xx", password="xxx",cmdname=cmdname)#

命令被調(diào)用,程序結(jié)束,無(wú)需等待,區(qū)別于方法二,缺陷 無(wú)法在linux上安裝庫(kù)

應(yīng)用場(chǎng)景實(shí)用,現(xiàn)在我需要在linux上執(zhí)行程序,將windows系統(tǒng)上的一個(gè)PDF格式的文件,傳到linux上?

# -- coding: utf-8 --
import winrm
def job():
  # 獲得連接
  t = winrm.Session("xxx.xx.xx.xx", auth=("xx", "xxx"))
  # 獲得a.pdf內(nèi)容
  r = t.run_cmd(r'type C:\xxx\xxx\Desktop\test\a.pdf')
  # 將內(nèi)容轉(zhuǎn)化成字符串
  s0 = str(r.std_out)
  # print(s0)
  with open("c.pdf","wb")as f:
        f.write(s0)
  print("寫入完成")
job()

總結(jié)

以上所述是小編給大家介紹的linux 遠(yuǎn)程控制windows系統(tǒng)下的程序(三種方法),希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!

標(biāo)簽:池州 自貢 阿克蘇 黔東 海南 大理 南陽(yáng) 黃石

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《linux 遠(yuǎn)程控制windows系統(tǒng)下的程序(三種方法)》,本文關(guān)鍵詞  linux,遠(yuǎn)程控制,windows,系統(tǒng),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《linux 遠(yuǎn)程控制windows系統(tǒng)下的程序(三種方法)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于linux 遠(yuǎn)程控制windows系統(tǒng)下的程序(三種方法)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章