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


  

原文地址:https://www.cnblogs.com/fy-xjw/p/10176016.html