常用的命令行

来源:互联网 发布:insanity健身软件 编辑:程序博客网 时间:2024/06/04 19:16

powershell命令,用来查找大于500MB的文件

get-childitem . -recurse | where-object {$_.Length -gt 500MB}


查看本地打开的Http连接

netstat -a |find /I "http"


清除IE Cache

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8

原创粉丝点击