当前位置: 首页 > news >正文

windows系统桌面快捷箭头去掉、恢复方式,支持win10、win11

一、windows 11

# 去除箭头
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
attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
del "%userprofile%\AppData\Local\iconcache.db" /f /q
start explorer
pause


# 恢复箭头
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f
taskkill /f /im explorer.exe
start explorer
pause

说明:
将上述代码放入txt文件中,然后改为bat文件,直接双击执行即可

二、windows 10

# 去除箭头
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


# 恢复箭头
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f
taskkill /f /im explorer.exe
start explorer
pause

说明:
将上述代码放入txt文件中,然后改为bat文件,直接双击执行即可

http://www.dtcms.com/a/121290.html

相关文章:

  • zk源码—4.会话的实现原理二
  • React Native 0.79发布 - 更快的工具及更多改进
  • Ant Design Menu 一级菜单超长文本悬浮优化方案
  • Maven error:Could not transfer artifact
  • 怎么查看苹果手机和ipad的设备信息和ios udid
  • 现在转测开来得及吗
  • R语言中的rvest库写个视频爬虫通用代码
  • 蓝桥杯补题
  • (1)英特尔 RealSense T265(三)
  • linux环境中部署node环境运行node应用
  • 重温hot100-day2
  • dav_1_MySQL数据库排查cpu消耗高的sql
  • C语言for循环嵌套if相关题目
  • Flink框架:批处理和流式处理与有界数据和无界数据之间的关系
  • 数据库视图讲解(view)
  • 8.3.1 MenuStrip(菜单)控件
  • 基于window11安装NACOS2.5.1的简介
  • Spark Core
  • 【Axure元件分享】移动端滑动拨盘地区级联选择器
  • 【c++11】c++11新特性(上)(列表初始化、右值引用和移动语义、类的新默认成员函数、lambda表达式)
  • 在Windows上安装Ubuntu24.04虚拟机
  • 全局端对端问题及应对方案
  • STM32F103VET6 芯片的主Flash 内存空间大小计算
  • 虚幻5的C++调试踩坑
  • 危险化学品标志速查手册(27个完整版)
  • 文件备份程序中的线程池管理:为何限制子线程数量?
  • Linux Makefile-概述、语句格式、编写规则、多文件编程、Makefile变量分类:自定义变量、预定义变量
  • feign 调用返回值为void接口,抛出了异常也不报错问题处理
  • 【C++】模板进阶
  • 编程中,!! 双感叹号的理解