我已经获得了以下代码片段(删除了大量或无关的逻辑),它使用ShellWindows对象来扫描打开的窗口,以查看用户正在浏览的网址,目的是在用户浏览到特定网址时执行某些操作:private ShellWindowsshellWindows = new ShellWindows();
// iteratethrough all windows
foreach (SHDocV
如何访问正在运行的Internet Explorer实例的经典Internet Explorer COM自动化对象?也就是说,如果我在多个窗口中打开了Internet Explorer,如何从Powershell中将与其中一个窗口对应的COM对象与Powershell中的变量相关联?我最接近这样做的就是通过get-process获取进程"iexplore“和"ieuser”。