### **windows 显示不清晰问题(不高清)**
* 调整动画
在弹出的“系统属性”窗口中,选择“高级”选项卡,在下面找到“性能”选项并点击“设置”按钮
### **windows11任务栏重叠合并错位解决方法**
- 原因:强行修改注册表为小任务栏导致
- 解决方案:使用注册表恢复至标准任务栏即可
1. 打开注册表
```powershell
HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced
```
2. 查找项”TaskbarSi”
> 如果存在则改值(1是标准值),如果不存在则创建
* TaskbarSi
* DWORD
* 32
```powershell
0 = 小
1 = 中等
2 = 大
```
3. 改完上重启资源管理器即可
### **windows 安装gcc**
```powershell
scoop instlal nuwen-mingw-gcc
```
### **在windows电脑上播放平台的AirPlay(例如:homepod)**
- 工具:TuneBlade
- 官网地址:http://www.tuneblade.com/
- 激活工具:https://xmod.notion.site/Windows-AirPlay-5ca47f3ed08b4243850dfcf5e4dde4a3
### **windows 创建软链接、硬链接**
- 命令行工具:mklink
> dos 管理员身份
```bash
MKLINK [[/D] | [/H] | [/J]] Link Target
```
创建软链接
> 软链接无盘符限制
```bash
mklink 目标地址(链接文件) 原文件
```
创建硬链接
> 硬链接必须在同一盘符下
```bash
mklink /h 目标地址(链接文件) 原文件
```
```bash
mklink /h D:\\scoop\\apps\\everything\current\\geosite.dat D:\\scoop\\apps\\gcc\\current\\geosite.dat
```
```bash
mklink /h D:\\scoop\\apps\\everything\\current\\geoip.dat D:\\scoop\\apps\\gcc\\current\\geoip.dat
```
### **windows 隐藏EFI分区盘符–>磁盘**
- DOS命令行操作
> 使用管理员身份运行dos Z盘对应数值–>2^(26-1)=33554432 A,B,C,D,E,F,G….盘符对应1,2,4,8,16,32,64也就是二进制位的低位到高位
```bash
reg add "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer" /v "Nodrives" /t REG_DWORD /d 33554432 /f & ^
taskkill /f /im explorer.exe & start explorer.exe
```
### **windows 端口被占用解决方法**
1. 查看端口号占用进程
```bash
netstat -ano|findstr “8060”
```
2. 关闭tcp进程
```bash
taskkill /pid 2112 /F
```