查找哪个 Silverlight 浏览器外应用程序正在 sllauncher.exe 下运行
如何找到正在运行的 Silverlight OOB 应用程序?
如果我获得进程列表,则 SL OOB 应用程序正在 sllauncher.exe 进程下运行。它们是通过带有 SL 应用程序 ID 的参数来调用的,但我在 Process.StartInfo.Arguments 中看不到这些参数。
有没有办法查看 sllauncher.exe 下实际运行的应用程序?
How can I find which Silverlight OOB app is running?
If I get a list of processes, the SL OOB apps are running under the sllauncher.exe process. They are invoked with arguments with the ID of the SL app, but I can't see the arguments in Process.StartInfo.Arguments.
Is there a way to see what app is actually running under sllauncher.exe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于您未启动的进程使用 Process.StartInfo.Arguments 是没有意义的。仅当您的程序使用这些参数启动该过程时,它才包含有意义的数据。
不过您可以使用 WMI,如下所示:
There is no point using Process.StartInfo.Arguments for processes that you did not start. It only contains meaningful data if your program have started the process using these arguments.
You can use WMI though, like so: