• window杂记


    explorer.exe是Windows程序管理器或者文件资源管理器,实现win的图形化界面(有些同学似乎在玩游戏的时候关闭以加速.)

    mp3的专辑图片实现是ID3

    本地搭建dns   https://blog.51cto.com/gaowenlong/2085125

    查看端口运行的进程 https://jingyan.baidu.com/article/3c48dd34491d47e10be358b8.html
    netstat -ano|findstr 443  (数字是端口名)
    tasklist|findstr "4760"      (数字是PID)

    禁止win10程序联网 https://jingyan.baidu.com/article/dca1fa6f1a75aaf1a44052f1.html

    防火墙设置出站规则 

    以下是bat

    ^|findstr /n .^|findstr "^1:"
    第一个和第二个 ^| 因为在for循环的('')中,|要用转义字符^
    第三个"^1:" 在findstr的参数中查找字符用^表示以后面紧跟的字符开头,也就是以1:开头的行.
    参考:https://zhidao.baidu.com/question/447703046.html

    \?\%1
    是完整的 UNC 路径格式,就是网上邻居的路径格式
    ?代表一个任意字符,在这也可以用.来代替
    \.可以理解为\127.0.0.1,但在代码中不能如此替换
    将传递的变量%1 的文件删除。
    参考:https://zhidao.baidu.com/question/177391126.html?qbl=relate_question_1&word=bat%20%5C%5C%3F%5C%251
    https://zhidao.baidu.com/question/281761843.html


      

  • 相关阅读:
    设置VS2017背景图片
    NuGet的简单使用
    C#6.0,C#7.0新特性
    openFileDialog的Filter属性设置
    C# 获取当前路径7种方法
    正则表达式总结
    IDEA设置switch/case代码块自动补齐
    CentOS7使用yum安装RabbitMQ
    vue react 路由history模式刷新404问题解决方案
    @Component, @Repository, @Service的区别
  • 原文地址:https://www.cnblogs.com/fy-xjw/p/10176016.html
Copyright © 2020-2023  润新知