psexec 错误代码 -1073740771 [英] psexec error code -1073740771

查看:59
本文介绍了psexec 错误代码 -1073740771的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过我的主桌面打开远程计算机上的 Unity3D game.exe.我曾尝试通过批处理文件执行此操作,但建议尝试 PsExec 在它的位置.

I'm trying to open up a Unity3D game.exe that is on a remote computer through my main desktop. I had tried to do this through a batch file, but was advised to try PsExec in its place.

到目前为止,我已将 Psexec 程序放入我的 game.exe 文件夹中.我运行打开程序所需的命令行,窗口打开了几分之一秒,然后由于错误而关闭.它给出的错误代码是:-1073740771.

So far, I've brought the Psexec program into my game.exe folder. I run the command line required to open the program and the window opens up for a fraction of a second before closing down due to an error. The error code it gives is: -1073740771.

我试着用谷歌搜索这个错误究竟是什么,但我找不到任何东西.有谁知道这个错误与什么有关?

I tried googling what this error actually is but I can't find anything. Does anyone know what this error relates to?

我输入的命令行如下:

psexec \\OtherComputer -i C:\Administrator\Users\Desktop\TargetFolder\Target.exe

我什至尝试在 -i 后面加上 -d,在 C:... 周围加引号,但结果都是一样的.

I even tried the above line with -d after the -i, quotes around the C:... but it all results in the same thing.

推荐答案

PSExec 不会知道除了 EXE 之外的其他游戏资源.它将简单地将 game.exe 复制到远程机器并执行它.

PSExec wont know about other game resources that live without side the EXE. It will simply copy game.exe to the remote machine and execute it.

尝试删除或重命名资源文件夹并在本地计算机上运行它 - 它应该与在远程计算机上执行相同的操作.

Try deleting or renaming the resource folder and running it on your local machine - it should do the same thing as its doing on the remote machine.

除非整个应用程序都包含在一个 .exe 文件中,否则您无法使用 psexec 做您想做的事.

You cant do what you want with psexec unless the entire application is self contained within one single .exe file.

如果您对其他机器具有管理员访问权限并且启用了管理共享,则可以手动复制资源文件夹,然后使用 -w 选项通过 psexec 执行:

You may be able to manually copy the resource folders if you have admin access to the other machines and administrative shares are enabled, then execute with psexec using the -w option:

  • 将文件复制到\\OtherComputer\C$\MyGame
  • 运行 psexec \\OtherComputer -w C:\MyGame -i C:\Administrator\Users\Desktop\TargetFolder\Target.exe

可能有用;o)

这篇关于psexec 错误代码 -1073740771的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆