Linux remote control windows system program (three methods)

Linux remote control windows system program (three methods)

Sometimes we need to remotely run programs on the Windows system on Linux.

Method 1:

Through the winrm module in python, the prerequisite is to set up the winrm service in advance. Please search Baidu for how to set it up. The winRM service is the remote management service of PowerShell under Windows Server. The Python script operates the windows command line by connecting to the winRM module.

import winrm
def cmd_views(ip,cmd_comand):
  win = winrm.Session('http://'+ip+':5985/wsman', auth=('user', 'password'))#Parameters are username and password r = win.run_cmd(cmd_comand) # Execute cmd command =
  return r.std_out # Print the obtained information ip="xxx.xxx.xx.xx"
cmd_comand=r"ipconfig"#Run command a=cmd_views(ip, cmd_comand)
print(cmd_comand)
print(type(a))
print(a)

After my test, this module can only execute some simple commands, that is, the kind of commands that can basically respond to results immediately after input. If you encounter something slightly more complicated, the process will crash.

Method 2:

The operation is performed through the telnetlib library in Python. The prerequisite is to set the telnet settings in the windows system. 1. Install the telnet client and server. 2 Configure telnet user permissions. If you don’t know how to do it, search on Baidu and set it up yourself.

# -- 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'#Run command telnetlib_views(ipaddress="xxx.xxx.xxx.xxx", user="xxx", password="xxxx",cmdname=cmdname)

Wait for the command call to complete and the program to end.

Method 3

Using the wmi module, the defect can only be solved through windows-windows, linux-windows does not work, and linux-related modules cannot be installed.

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("The currently executed bat command is:",cmd_callbat)
    conn.Win32_Process.Create(CommandLine=cmd_callbat)
  except Exception as e:
    print(e)
cmdname= r"xxx.bat"#Run commandsys_version(ipaddress="xxx.xx.xx.xx", user="xx", password="xxx",cmdname=cmdname)#

The command is called and the program ends without waiting. This is different from method 2. The defect is that the library cannot be installed on Linux.

The application scenario is practical. Now I need to execute a program on Linux to transfer a PDF file on the Windows system to Linux?

# -- coding: utf-8 --
import winrm
def job():
  # Get the connection t = winrm.Session("xxx.xx.xx.xx", auth=("xx", "xxx"))
  # Get the content of a.pdf r = t.run_cmd(r'type C:\xxx\xxx\Desktop\test\a.pdf')
  # Convert the content into a string s0 = str(r.std_out)
  # print(s0)
  with open("c.pdf","wb")as f:
        f.write(s0)
  print("Writing completed")
job()

Summarize

The above is the program (three methods) for remote controlling Windows system from Linux that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed method of packaging Python3 program under Windows and Linux
  • How to cross-compile Golang on Mac, Linux, and Windows
  • How to package Python 3 on Windows and Linux
  • Installation and verification of pytorch in linux or windows environment (solving runtimeerror problem)
  • Analysis of the method of uploading zip compressed packages under Windows to Linux system using compression
  • How to upload and download files between Linux server and Windows system
  • Detailed explanation of accessing MySQL database in Linux virtual machine under Windows environment
  • Remote Desktop Connection between Windows and Linux

<<:  Explanation of mysql transaction select for update and data consistency processing

>>:  Summary of various methods for Vue to achieve dynamic styles

Recommend

Example of asynchronous file upload in html

Copy code The code is as follows: <form action...

How to clear the cache after using keep-alive in vue

What is keepalive? In normal development, some co...

Example of using js to natively implement year carousel selection effect

Preface Use js to achieve a year rotation selecti...

Linux system calls for operating files

Table of contents 1. Open the file Parameter Intr...

CSS realizes the layout method of fixed left and adaptive right

1. Floating layout 1. Let the fixed width div flo...

An example of how to quickly deploy web applications using Tomcat in Docker

After learning the basic operations of Docker, we...

How are Vue components parsed and rendered?

Preface This article will explain how Vue compone...

30 excellent examples of color matching in web design

Today, this article has collected 30 excellent cas...

An example of how Vue implements four-level navigation and verification code

Effect: First create five vue interfaces 1.home.v...

A Brief Analysis of CSS Selector Grouping

Selector Grouping Suppose you want both the h2 el...

A simple way to call desktop exe programs on a web page

This article mainly introduces how to call desktop...

Example code for implementing raindrop animation effect with CSS

Glass Windows What we are going to achieve today ...

20 CSS coding tips to make you more efficient (sorted)

In this article, we would like to share with you ...

Summary of Several Methods for Implementing Vertical Centering with CSS

In the front-end layout process, it is relatively...