2

我正在使用 winexe 将远程命令从我的 Ubuntu 计算机发送到 Windows 计算机。如果我的用户域/用户名%密码很好用。但是我相信 psExec 是一个从 Windows 向 Windows 发送远程命令的实用程序,不需要用户名密码组合。

所以这个命令有效:

bin/winexe -U user%password //computer 'msg  hello world'

这个没有

bin/winexe //computer 'msg hello world'没有错误只是在winexe中列出命令

有什么建议么?

4

1 回答 1

3

似乎无法避免输入用户名/密码,但您可以尝试以下方式:

winexe --authentication-file //computer 'msg  hello world'

以这种格式创建身份验证文件。

domain=domainName
username=myUserName
password=myPassword
于 2014-01-10T02:56:36.917 回答