C# WMI 远程进程创建 -GUI Hack
我编写了一个 C# Windows 服务,用于重新启动远程计算机上的进程和服务。
它工作正常,但是对于我需要重新启动的某些进程,应用程序需要 GUI....
.....是否有任何技巧可以在远程启动进程时显示 GUI?
I've written a C# Windows Service that restarts processes and services on remote machines.
It works fine, however for some of the processes that I need to restart, The application needs a GUI....
.....Are there any hacks to get the GUI to display when starting a process remotely?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看应用程序是否有任何可以用来抑制 GUI 的参数,然后将其传递出去。我知道我们使用
/accepteula 抑制 BGInfo 的提示
在我们的一些虚拟机上。See if the application has any parameters it can take to suppress the GUI and just pass it along. I know we suppress BGInfo's prompt using
/accepteula
on some of our VMs.