从 linux ssh 会话在 Windows 主机上启动 Windows 脚本或命令

从 linux ssh 会话在 Windows 主机上启动 Windows 脚本或命令

有没有办法从Linux服务器在Windows服务器上运行脚本或命令。我已经搜索过,但似乎找不到简单的解决方案。

答案1

您可以使用 winexe 从 Linux 启动 Windows 命令 它类似于 psexec 但从 Linux 使用 RPC

./winexe -U user%password //192.168.0.1 ipconfig

或者

./winexe --authentication-file=FILE //192.168.0.1 'cmd.exe /c echo "this is running on windows"'

来源:https://sourceforge.net/projects/winexe/

相关内容