0

在 Windows 7 上,如何允许来自不同网络的人开始执行某些已经存在的 .exe 文件以及可以提供哪个路径?

您可以假设所涉及的主题将具有相同的操作系统。

远程机器位于防火墙后面,您可以假设某些端口可以被转发。

要求:

  1. 将远程开始执行的主题需要有简单的方法来执行此操作,如果可能,无需安装任何其他软件

    1. 并不意味着每个人都应该能够执行(需要简单的认证)
  2. 如果对 1 中提到的主题更加用户友好,那么设置将执行程序的机器的过程可能会更加复杂。

  3. 最后但也是最重要的:1. 中提到的主题必须不能在远程系统上执行、读取或更改任何其他内容,如果可能,请再次执行

到目前为止,我能找到的唯一可能适合此目的的是 telnet,如果我没记错的话,它可以满足前三个要求,但我不确定使用它可以完全满足最后一个要求。

4

2 回答 2

1

http://www.intelliadmin.com/index.php/free-download/?filename=remoteexecute.exe

Intelliadmin 提供了一个很棒的远程执行程序,可以很容易地用于通过局域网远程执行 .exe 文件。两台计算机上都需要一个网络管理员帐户,具有相同的用户并通过

句法:

remoteexecute.exe -h [host] -u [user] -p [pass] [options] [filename] [arguments]

选项:

 -h The remote host name or IP

 -u Username *

 -p Password *

 -e Don't load users environment variables

 -l Don't load users profile

 -c Copy file to the remote host

 -cs Run process in the console session

 -n Run process as hidden

 -sf [filter] Run process in session where user matches the filter

 -i Return immediately, and don't wait for process to terminate

 -sa Run process under the system account

 -su Run process as the session user

 -q Quiet mode.

必需选项 - *

于 2014-10-10T23:23:20.980 回答
0

该程序似乎没有使用任何类型的加密。以纯文本形式发送该数据是自找麻烦。

Windows 7 至少提供 128 位 RDP 加密: http: //www.howtogeek.com/175087/how-to-enable-and-secure-remote-desktop-on-windows/

但是,本文提到了与 SSL v3 几乎相同的 TLS/1.0 - 两者都被认为已损坏。我建议寻找可以在 Windows 7 机器上实现 TLS/1.1 及更高版本的解决方案。

于 2015-09-01T17:18:16.600 回答