收藏一些让 Win 更好用的方法

Lenovo 屏蔽 Fn 键

  1. 安装 Lenovo 键盘驱动 (Google 搜索下载)

  2. 开始菜单打开该驱动程序,设置使用标准的F1-F12功能键

添加开机启动软件

  1. Win + R
  2. Input: shell:startup

清理桌面文件夹角标

  • 创建 clean.bat 文件,并以管理员权限执行, 文件内容如下:

    1
    2
    3
    4
    
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /t reg_sz /f
    taskkill /f /im explorer.exe
    start explorer
    pause

    恢复桌面文件夹角标

    • 创建 recover.bat 文件,并以管理员权限执行,文件内容如下:
    1
    2
    3
    4
    
    reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f
    taskkill /f /im explorer.exe
    start explorer
    pause