桌面圖標(biāo)箭頭怎么去掉?
方法一:開始==運行==輸入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、然后粘貼下面的代碼到記事本中,按照下圖的格式粘貼,注意格式不要錯誤,否則運行出錯 m.onuomy.cn
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文件即可(運行中屏幕會消失閃動一下)。
如果想要回復(fù)Win7系統(tǒng)快捷方式小箭頭可以使用下面的代碼,操作方法和上面一樣。
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