powershell命令,用来查找大于500MB的文件
get-childitem . -recurse | where-object {$_.Length -gt 500MB}
查看本地打开的Http连接
netstat -a |find /I "http"
清除IE Cache
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
本文介绍了几个实用的Powershell命令,包括查找大于500MB的大文件、查看本地打开的HTTP连接以及清除IE浏览器缓存的方法。
powershell命令,用来查找大于500MB的文件
get-childitem . -recurse | where-object {$_.Length -gt 500MB}
查看本地打开的Http连接
netstat -a |find /I "http"
清除IE Cache
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8

被折叠的 条评论
为什么被折叠?