美文网首页
Windows备忘

Windows备忘

作者: JustinZhang_ | 来源:发表于2023-02-01 21:48 被阅读0次

    1.哈希校验

    CertUtil -hashfile filePath MD5
    CertUtil -hashfile filePath SHA1
    CertUtil -hashfile filePath SHA256
    CertUtil -hashfile filePath SHA512
    

    2. 端口&进程

    # 查询端口占用
    netstat -ano | findstr pid
    # 查询进程号
    tasklist | findstr pid
    # 杀进程
    tskill pid
    

    3. 分辨软件32/64位

    文件右键-属性-兼容性-设置:

    • 简化的颜色模式
    • 用640X480屏幕分辨率运行

    支持以上两项即为32位程序

    文件右键-属性-兼容性-兼容模式:

    • 64位最低支持到Windows Vista
    • 32位最低支持到Windows 95

    相关文章

      网友评论

          本文标题:Windows备忘

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