共有 16 篇文章
还原鼠标右键 Restore old Right-click Context menu in Windows 11
2024-01-18 - 2024-09-18
右键菜单改回Win10(展开) reg add "HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve taskkill /f /im explorer.exe & start explorer.exe 右键菜单改回Win11(折叠) reg delete "HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f taskkill /f /im explorer.exe & start explorer.exe
禁止Windows系统生成Thumbs.db缩略图缓存
2023-09-19 - 2024-09-18
在Win10系统下,按住键盘的 “Win+R” 组合快捷键,系统将会打开“运行”命令对话窗口。 在打开的运行命令对话框中输入 “gpedit.msc” 命令,然后再点击“
Chromium Tips
2023-08-08 - 2024-09-18
缺少Google API 密钥,因此Chromium 的部分功能将无法使用 1. 设置环境变量,屏蔽提示 (会导致无法登录Google) setx GOOGLE_API_KEY "no" setx GOOGLE_DEFAULT_CLIENT_ID "no" setx GOOGLE_DEFAULT_CLIENT_SECRET "no" 2. 配置Google API Key https://cloud.google.com/console
Disable Windows Hibernate
2023-06-28 - 2024-09-18
Hiberfil.sys文件位于系统盘的根目录下,这是一个受保护的操作系统文件,它是 win10 休眠功能(Hibernation)中将内存数据与会话数据保存到电脑硬盘、以
无法删除网络驱动器:此网络连接不存在
2023-03-28 - 2024-09-18
单击 “开始”,指向 “运行”,键入 regedit,然后单击 “确定”。 在注册表编辑器中,找到以下注册表子项: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2 右键单击要删除的映射驱动器。 例如,右键单击 ##Serv
Notepad Compile
2023-02-15 - 2024-09-18
Environment Add MinGW environment to Path: C:\MinGW\bin Open Notepad++ Plug->Plugin Manager->Show Plugin Manager at Available, double click ‘downloading list’ Search ‘Nppexec’, install and restart Open Console Plug->NppExec->Show Console Compile Plug->NppExec->Execute Compile input: g++ $(FULL_CURRENT_PATH) -g -o $(CURRENT_DIRECTORY)$(NAME_PART).exe click save, input: Compile Run input: $(CURRENT_DIRECTORY)$(NAME_PART).exe click save, input: Run GDB input: gdb $(CURRENT_DIRECTORY)$(NAME_PART).exe click save, input: GDB Add to Macros submenu Plug->NppExec->Advanced Options at Associated script: Add-> Compile and Run and GBD Menu items -> Place to the Macros submenu
KMS & GVLK
2022-10-08 - 2024-09-18
Windows https://learn.microsoft.com/zh-cn/windows-server/get-started/kms-client-activation-keys?source=recommendations Windows Server 2022 操作系统版本 KMS 客户端安装程序密钥 Windows Server 2022 Datacenter WX4NM-KYWYW-QJJR4-XV3QB-6VM33 Windows Server 2022 Standard VDYBN-27WPP-V4HQT-9VMD4-VMK7H Windows Server 2019 操作系统版本 KMS 客户端安装程序密钥 Windows Server 2019 Datacenter WMDGN-G9PQG-XVVXX-R3X43-63DFG Windows Server 2019 Standard N69G4-B89J2-4G8F4-WWYCC-J464C Windows Server 2019 Essentials WVDHN-86M7X-466P6-VHXV7-YY726 Windows Server 2016 操作系统版本 KMS 客户端安装
Windows Product Activation
2022-10-08 - 2024-09-18
KMS激活Windows 首先用管理员权限打开命令提示符 卸载当前系统秘钥:slmgr.vbs /upk 写入KMS的GVLK秘钥:slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX 写入KMS服务器地址:slm
Fix Windows and Linux Showing Different Times When Dual Booting
2022-10-04 - 2024-09-18
Make Windows Use UTC Time Filename: Make Windows Use UTC Time.reg Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation] "RealTimeIsUniversal"=dword:00000001 以管理员身份打开 「PowerShell」,输入以下命令 Reg add HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation /v RealTimeIsUniversal /t REG_DWORD /d 1 Make Windows Use Local Time Filename: Make Windows Use Local Time.reg Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation] "RealTimeIsUniversal"=-
Auto Restart Network Interface
2022-09-26 - 2024-09-18
每隔30秒钟检查一次网络状态,如果网络异常则重启网卡,然后刷新DNS缓存。 @echo off echo "正在监听网络状态…." cd C:\opt\netcheck :begin ping akvicor.com > ping.txt rem echo %errorlevel% if %ERRORLEVEL% == 1 goto ping2 goto loop
Windows IP Local Port Range
2022-08-08 - 2024-09-18
:: 查看Windows系统TCP端口范围 netsh int ipv4 show dynamicportrange protocol=udp :: 修改Windows系统TCP端口范围 netsh int ipv4 set dynamicport tcp start=30000 num=35535 :: 查看Windows系统UDP端口范围 netsh int ipv4 show dynamicportrange protocol=udp :: 修改