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的文件
get-childitem . -recurse | where-object {$_.Length -gt 500MB}
查看本地打开的Http连接
netstat -a |find /I "http"
清除IE Cache
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8