我想關閉Internet Explorer乾淨/優雅。任務殺手會關閉它,但當重新打開它時,它會問你是否想重新打開上一次會話。PowerShell中關閉Internet Explorer擺好/清潔
5
A
回答
7
嘗試CloseMainWindow方法:關閉具有通過發送關閉消息到它的主窗口的用戶界面的方法。
Get-Process iexplore | Foreach-Object { $_.CloseMainWindow() }
3
試試這個:get-process iexplore | stop-process
。
0
這樣就可以循環並調用CloseMainWindow上所有窗口,這是正常關機API調用 - 它睡覺半秒給它的時候纔去各地關閉每個:
powershell -Command "while ($true){Try{$process=Get-Process iexplore -ErrorAction Stop}Catch [Microsoft.PowerShell.Commands.ProcessCommandException]{break;}if ($process) {$whateva=$process.CloseMainWindow()}else {break;}Start-Sleep -m 500}"
相關問題
- 1. 的Visual Studio - 禁止關閉Internet Explorer中
- 2. DIV在Internet Explorer中關閉屏幕
- 3. Internet Explorer CSS旋轉擺動
- 4. Internet Explorer條件註釋未關閉
- 5. 禁用Internet Explorer關閉按鈕
- 6. 關閉Internet Explorer的所有實例
- 7. 編寫清潔無極完成關閉
- 8. 良好'ole Internet Explorer問題
- 9. Powershell中的清潔/多重-notlike
- 10. 清潔替代方法在PowerShell中
- 11. 清除問題:正確;在Internet Explorer中
- 12. 良好的Javascript清潔
- 13. jquery-ui對話框不會在Facebook上的Internet Explorer中關閉
- 14. 關閉在Windows CE 5.0中的Internet Explorer的預防
- 15. 如何關閉Azure中的Internet Explorer增強安全設置
- 16. 如何關閉Internet Explorer中的彈出窗口?
- 17. 彈出式關閉按鈕在Internet Explorer中不起作用?
- 18. 使用PowerShell和Internet Explorer下載文件
- 19. Windows Server 2008 R2 PowerShell和Internet Explorer 9
- 20. powershell 2.0無法獲取Internet Explorer日誌
- 21. Powershell預定作業; Internet Explorer不可見
- 22. 在Internet Explorer中
- 23. 調用命令清除Internet Explorer緩存
- 24. Internet Explorer:浮動和清除問題
- 25. Internet Explorer清除保存用戶名
- 26. 如何使用mshtml關閉新打開的Internet Explorer
- 27. 如果Internet Explorer自動關閉彈出窗口阻止程序
- 28. 如何使用PostThreadMessage從C++關閉Internet Explorer
- 29. 如何提供關閉Internet Explorer窗口的確認?
- 30. 如何在gwt土地上收聽Internet Explorer關閉事件
這是否還關閉任何隱藏的IExplore隱藏進程? – 2017-06-21 01:28:04