### **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
```