从 Windows 服务使用时,psexec 失败并返回代码 122
我编写了一个 WCF 服务作为我们编写的 C# 实用程序的包装器,该实用程序使用 SysInternals psexec
实用程序在远程系统上运行作业。 psexec
是从 C# 调用的,其命令行参数指定要使用的域、用户和密码。
当我从本地 PowerShell 调用 C# 实用程序时,一切正常。
但是,当我从 WCF 服务运行该实用程序时,我们看到返回代码为 122,它对应于(?)“传递给系统调用的数据区域太小”。
psexec
正在 Windows Server 2008 上运行。我传递的凭据是本地管理员,与托管包装该实用程序的服务的计算机位于同一域中。
I've written a WCF service as a wrapper around a C# utility we've written that uses the SysInternals psexec
utility to run jobs on a remote system. psexec
is invoked from C# with command-line parameters that specify the domain, user and password to use.
All works fine when I invoke the C# utility from PowerShell locally.
However, when I run the utility from the WCF service we see a return code of 122, which corresponds to (?) "The data area passed to a system call is too small".
psexec
is running against Windows Server 2008. The credentials I'm passing are local administrator, in the same domain as the machine that hosts the service wrapping the utility.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,这很可能是 PSExec 1.97 版本修复的错误。这个版本在这种情况下似乎工作得很好。
So it turns out that this was most likely a bug fixed with PSExec version 1.97. This version appears to work just fine in this circumstance.