桌面图标箭头怎么去掉?
方法一:开始==运行==输入cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe 点击确定
方法二:1、在注册表中删除,单击“开始”按钮,选择“运行”输入regedit后回车
2、选择HKEY_CLASSES_ROOT\lnkfile,在右边的窗口中找到字符串值“isshortcut“按DELETE键将其删除。
3、输入以下文本,用记事本保存在桌面,名字为hideico.vbs,存好双击打开。
Dimwso
Setwso=CreateObject("Wscript.Shell")
wso.RegDelete"HKCR\lnkfile\IsShortcut"
wso.RegDelete"HKCR\piffile\IsShortcut"
wso.run("cmd/ctaskkill/f/imexplorer.exe"),,True
wso.run("explorer.exe")
Wscript.quit()
Wscript.quit()
方法三:
1、右键点击桌面新建一个文本文档,
2、然后粘贴下面的代码到记事本中,按照下图的格式粘贴,注意格式不要错误,否则运行出错 www.xiuchufang.com
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,196" /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
3、另存名字为123.bat,文件类型为所有文件
4、最后我们双击运行123.bat文件即可(运行中屏幕会消失闪动一下)。
如果想要回复Win7系统快捷方式小箭头可以使用下面的代码,操作方法和上面一样。
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /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