我正在尝试使用python创建程序, 我编写了允许一台计算机连接另一台计算机的代码, 我不知道如何看到另一台计算机的桌面并控制它正在运行的程序
ip = "127.0.0.1"
username = ""#"username"
password = ""#"password"
try:
print ("Establishing connection to %s" %ip)
connection = wmi.WMI(ip, user=username, password=password)
connection.Win32_Process.Create(CommandLine="notepad.exe /c text.txt")
print ("Connection established")
except wmi.x_wmi:
print ("Your Username and Password of "+getfqdn(ip)+" are wrong.")
答案 0 :(得分:0)
要查看屏幕,您需要使用其他协议。我推荐RDP,因为它已安装在Windows计算机上。您可以使用rdpy
模块执行此操作。
要查看正在运行的程序,可能有一些方法可以列出当前正在运行的进程,但我也找不到。