退出事件的过程火灾延迟

问题描述 投票:0回答:1

我有这个代码:

Process internetExplorerProcess = Process.Start("iexplore", "-noframemerging about:blank");
internetExplorerProcess.EnableRaisingEvents = true;
internetExplorerProcess.Exited += OnInternetExplorerProcessExited;

在这种情况下,退出的事件立即执行。

如果我们更改第一行以打开网页而不是空白页面:

 Process internetExplorerProcess = Process.Start("iexplore", "-noframemerging www.stackoverflow.com");

在某些机器中,退出的事件不会立即运行,可能需要长达20秒。

额外的信息:

如果在延迟期间我们打开任务管理器并强制杀死iexplore事件被触发,似乎某些外部进程阻止了iexplore的关闭。

我们用反恶意软件工具检查了机器,一切正常。

c# .net internet-explorer shdocvw
1个回答
0
投票

我按照Anton Komyshan所说的帖子中所示的步骤并没有解决问题,但他帮我找到了问题,谢谢。

最后在重新配置iexplore之后,默认情况下删除插件和配置,问题解决了。

© www.soinside.com 2019 - 2024. All rights reserved.