如何通过python3调用远程服务器中的文件?

How can I call a file in a remote server through python3?

例如我的电脑(Windows Server 2017)上有一个.py脚本,我想用它来控制远程服务器(Windows Server 2017)来执行以下操作步骤:

  1. 在远程服务器上打开MS Word(已安装)
  2. 使用word打开也位于远程服务器上的word文档。

谁有什么好主意?非常感谢!

Soo,对于这种情况,我更喜欢 PowerShell 来执行此任务,因为 powershell 有很多用于管理任务和自动化的库。 powershell 是 windows 服务器中使用的语言,在我的工作中,我使用 powershell 做一些事情,比如发送电子邮件、在服务器中创建配置文件等。显示代码:

$Filename='C:\HappyBirthdayEd.docx' #set the name and location of the file
$Word=NEW-Object –comobject Word.Application #set the word application
$Document=$Word.documents.open($Filename) #open the document

所以,这个小代码块打开了一个 word 文件。只要做一些改变,我就可以工作。 PS.: 对不起我的英语不好

问题在这里解决:如何连接到远程Windows机器以使用python执行命令?