Windows使用记录
cmd查看并设置代理
设置socks代理
set ALL_PROXY socks5://127.0.0.1:10808
配置http代理
set http_proxy=http://127.0.0.1:10809 set https_proxy=http://127.0.0.1:10809
查看代理
netsh winhttp show proxy
清除代理
netsh winhttp reset proxy
上帝模式
新建文件夹,重命名为 上帝模式.{ED7BA470-8E54-465E-825C-99712043E01C}
浏览器主页被篡改修复
任务栏浏览器主页被篡改,右键属性就会看到目标后,有一串网址,删除解决,路径:C:\Users\用户名\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar
高分辨率远程桌面低分辨率屏幕内容过小解决办法
- 修改注册表:用
Windows+R
运行regedit
编辑注册表,找到:HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion > SideBySide
新建DWORD
,命名PreferExternalManifest
,并双击设置值为1
. - 创建文件mstsc.exe.manifest,并放到该路径下:
C:\Windows\System32
隐藏文件
attrib +s +a +h +r E:\hide
attrib -s -a -h -r E:\hide
通用路径
- win11当前壁纸路径
C:\Users\用户名\AppData\Roaming\Microsoft\Windows\Themes\CachedFiles\
- hosts文件路径
C:\Windows\System32\drivers\etc
- windows保护历史记录删除
C:\ProgramData\Microsoft\Windows Defender\Scans\History\Service\DetectionHistory
- 开机启动
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
wsl
powershell
管理员身份打开,执行以下命令wsl --install dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart wsl --set-default-version 2
在安装的目录下执行以下命令:
Invoke-WebRequest -Uri https://wsldownload.azureedge.net/Ubuntu_2004.2020.424.0_x64.appx -OutFile Ubuntu20.04.appx -UseBasicParsing Rename-Item .\Ubuntu20.04.appx Ubuntu.zip Expand-Archive .\Ubuntu.zip -Verbose cd .\Ubuntu\ .\ubuntu2004.exe
查看当前安装的wsl
wsl --list
注销卸载当前安装的子系统
wsl --unregister Ubuntu
设置代理
adb connect 127.0.0.1:58526 && adb shell "settings put global http_proxy 'ip route list match 0 table all scope global | cut -F3':10808"