Kam*_*106 3 powershell internet-explorer kill process
我想终止所有运行时间超过 5 分钟的 Internet Explorer 进程。这必须是使用 Powershell v1.0 的一行命令。
其他方式:
get-process iexplore | ? { ([DateTime]::Now - $_.StartTime).TotalSeconds -gt 300 } | stop-process
Run Code Online (Sandbox Code Playgroud)