美文网首页
windows下常用命令

windows下常用命令

作者: 大lan猫 | 来源:发表于2016-10-12 17:13 被阅读2次

    记录一下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下常用命令

          本文链接:https://www.haomeiwen.com/subject/uqviyttx.html