windows下常用命令

记录一下Windows中常用的命令

  • widnows下获取文件的md5,sha1,sha256值命令
certutil -hashfile filename MD5  
certutil -hashfile filename SHA1  
certutil -hashfile filename SHA256  
  • 查看指定端口号被占用的进程号
netstat -ano | findstr "5037"
  • 查看指定进程号的占用程序
tasklist | findstr "5976"
  • 杀死指定进程号对应的应用
taskkill /f /pid 5976

你可能感兴趣的:(windows下常用命令)