方法1:
通过查找IExplore的进程,直接终止进程。
Get-Process | where {$_.processName -eq "explorer"} | foreach {$_ | stop-process}
方法2:
通过com对象获取所有窗口,过滤IE浏览器窗口,调用quit()方法,关闭。
(New-Object -comObject Shell.Application).Windows() | where {($_.FullName -ne $null) -and ($_.FullName.toLower().EndsWith("iexplore.exe")) } | foreach { $_.quit() }
本文链接: https://www.pstips.net/powershell-close-iexplore-windows.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!
第一个方法错了吧,应该是iexplore