为什么这不起作用

发布于 2024-11-09 20:18:33 字数 306 浏览 0 评论 0原文

为什么这不起作用?我想将文件复制到远程计算机并运行它。

psexec \\epo-test -c C:\temp\Avmr64.msi /Silent

错误

这是我在 epo-test 上收到 PsExec 无法启动 Avmr64.msi 的 : 系统找不到指定的文件。

我正在尝试将 Avmr64.msi 复制到 epo-test 并运行静默安装,但我得到了这个 PsExec 无法在 epo-test 上启动 Avmr64.msi: 系统找不到指定的文件。

任何帮助都会很棒。

Why doesn't this work? I want to copy the file to the remote machine and run it.

psexec \\epo-test -c C:\temp\Avmr64.msi /Silent

Heres the error I get

PsExec could not start Avmr64.msi on epo-test:
The system cannot find the file specified.

I am trying to copy Avmr64.msi over to epo-test and run a silent install but I get this
PsExec could not start Avmr64.msi on epo-test:
The system cannot find the file specified.

Any help would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

所有深爱都是秘密 2024-11-16 20:18:33

对于那些有兴趣的人来说,这是答案

psexec -u domain\username \\system -s -i -d msiexec.exe /i "\\share\folder\msifile" /qb

For those that are interested heres the answer

psexec -u domain\username \\system -s -i -d msiexec.exe /i "\\share\folder\msifile" /qb
丑疤怪 2024-11-16 20:18:33

我认为你在这里尝试运行的是“/Silent”。尝试一下:

psexec \\epo-test -c C:\temp\Avmr64.msi "C:\temp\Avmr64.msi /Silent"

或者类似的东西。

I think what you're trying to run here is "/Silent". Try instead:

psexec \\epo-test -c C:\temp\Avmr64.msi "C:\temp\Avmr64.msi /Silent"

or something in that fashion.

趁微风不噪 2024-11-16 20:18:33

尝试以下(未经测试):

psexec \\epo-test -c C:\temp\Avmr64.msi  "msiexec /i /passive Avmr64.msi"

http://forum.sysinternals.com/topic2542.html

Try the below ( untested ):

psexec \\epo-test -c C:\temp\Avmr64.msi  "msiexec /i /passive Avmr64.msi"

http://forum.sysinternals.com/topic2542.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文