博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何去掉系统快捷方式的箭头(转载)
阅读量:6322 次
发布时间:2019-06-22

本文共 2441 字,大约阅读时间需要 8 分钟。

                  如何去掉系统快捷方式的箭头(转载)

  本文转自:http://blog.sina.com.cn/s/blog_5d2ced280100ocvb.html。

  网上有很多去掉系统快捷方式箭头的方法,但基本每种方法都有缺陷,会带来一些问题。下面这种方法可以完美的去掉快捷方式的箭头。

1.针对winows xp系统

  将下面的代码复制粘贴到一个记事本文件里1.txt:

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "C:\Windows\system32\shell32.dll,49" /t reg_sz /ftaskkill /f /im explorer.exeattrib -s -r -h "%userprofile%\Local Settings\Application Data\iconcache.db"del "%userprofile%\Local Settings\Application Data\iconcache.db" /f /qstart explorer

  然后将1.txt改名为1.bat,以管理员身份运行该文件即可,即可去掉xp系统快捷方式的箭头。

  如果想要恢复箭头,以同样的方法运行下面这段代码即可:

reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /ftaskkill /f /im explorer.exeattrib -s -r -h "%userprofile%\Local Settings\Application Data\iconcache.db"del "%userprofile%\Local Settings\Application Data\iconcache.db" /f /qstart explorer

2.针对win7系统

  去除箭头:

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,196" /t reg_sz /ftaskkill /f /im explorer.exeattrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"del "%userprofile%\AppData\Local\iconcache.db" /f /qstart explorer

  恢复箭头:

reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /ftaskkill /f /im explorer.exeattrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"del "%userprofile%\AppData\Local\iconcache.db" /f /qstart explorer

  win7右键添加“获取管理员权限”

Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\*\shell\runas]@="获取管理员权限""NoWorkingDirectory"=""[HKEY_CLASSES_ROOT\*\shell\runas\command]@="cmd.exe /c takeown /f \"%1\" & icacls \"%1\" /grant administrators:F""IsolatedCommand"="cmd.exe /c takeown /f \"%1\" & icacls \"%1\" /grant administrators:F"[HKEY_CLASSES_ROOT\exefile\shell\runas2]@="获取管理员权限""NoWorkingDirectory"=""[HKEY_CLASSES_ROOT\exefile\shell\runas2\command]@="cmd.exe /c takeown /f \"%1\" & icacls \"%1\" /grant administrators:F""IsolatedCommand"="cmd.exe /c takeown /f \"%1\" & icacls \"%1\" /grant administrators:F"[HKEY_CLASSES_ROOT\Directory\shell\runas]@="获取管理员权限""NoWorkingDirectory"=""[HKEY_CLASSES_ROOT\Directory\shell\runas\command]@="cmd.exe /c takeown /f \"%1\" /r /d y & icacls \"%1\" /grant administrators:F /t""IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y & icacls \"%1\" /grant administrators:F /t"

  将上述代码粘贴到1.reg文件中,运行即可。

你可能感兴趣的文章
UIButton设置imgae图片自适应button的大小且不变形
查看>>
使用Schema配置切面
查看>>
javascript之递归得DOM文本
查看>>
hdu5543(Pick The Sticks) 01背包
查看>>
结对编程
查看>>
一次关于“_doPostBack 未定义”的调试
查看>>
jdk环境变量配置方法
查看>>
IOS开发之表视图添加索引
查看>>
控制台绘制正弦曲线和余弦曲线同时显示
查看>>
深入理解PHP内核(三)概览-SAPI概述
查看>>
swift4.2 打印所有系统字体
查看>>
Redis 持久化之RDB和AOF
查看>>
七字箴言与六字箴言
查看>>
算法笔记--st表
查看>>
Codeforces 920F - SUM and REPLACE
查看>>
sass
查看>>
web.py 中文模版报错
查看>>
2018-2019-20172309 《程序设计与数据结构》实验一报告
查看>>
Art & Material
查看>>
ThinkPHP中的CURD操作
查看>>