查找哪个 Silverlight 浏览器外应用程序正在 sllauncher.exe 下运行

发布于 2024-12-12 07:00:02 字数 205 浏览 3 评论 0原文

如何找到正在运行的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑,眼淚并存 2024-12-19 07:00:02

对于您未启动的进程使用 Process.StartInfo.Arguments 是没有意义的。仅当您的程序使用这些参数启动该过程时,它才包含有意义的数据。

不过您可以使用 WMI,如下所示:

var processQuery = new SelectQuery("SELECT Commandline FROM Win32_Process");
var scope = new System.Management.ManagementScope(@"\\.\root\CIMV2");
var searcher = new ManagementObjectSearcher(scope, processQuery);
ManagementObjectCollection processes = searcher.Get();
foreach (var process in processes)
{
     Console.WriteLine(process["Commandline"]);
}

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:

var processQuery = new SelectQuery("SELECT Commandline FROM Win32_Process");
var scope = new System.Management.ManagementScope(@"\\.\root\CIMV2");
var searcher = new ManagementObjectSearcher(scope, processQuery);
ManagementObjectCollection processes = searcher.Get();
foreach (var process in processes)
{
     Console.WriteLine(process["Commandline"]);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文