使用 WMI 设置远程进程的工作文件夹
我正在使用这篇文章使用 WMI 在远程计算机上启动进程。 如何控制进程启动的工作目录?
(无需将我重定向到 psexec,我从中收到错误,当前正在尝试 WMI 方法)。
I'm using this article to start a process on a remote machine using WMI. How can I control the working directory that process will start in?
(No need to redirect me to psexec, I'm getting an error from it, currently trying the WMI approach).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在此处找到答案并进行推断。
对文中代码稍作修改:
inParams["CurrentDirectory"] = @"c:\WorkingDirectory";
Found the answer here and extrapolated.
A slight modification to the code in the article:
inParams["CurrentDirectory"] = @"c:\WorkingDirectory";