去掉win快捷方式上的小箭頭
阿新 • • 發佈:2021-01-23
1.去掉快捷方式上的小箭頭
編寫指令碼,新建一個 txt 檔案,然後輸入以下內容,再改檔案拓展名為 .bat
,然後雙擊執行即可
@echo off
reg delete HKEY_CLASSES_ROOT\piffile /v IsShortcut /f
reg delete HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /f
taskkill /f /im explorer.exe
explorer.exe
完成後:
2.如何恢復
執行以下指令碼即可
@echo off reg add HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /t REG_SZ /f reg add HKEY_CLASSES_ROOT\piffile /v IsShortcut /t REG_SZ /f taskkill /f /im explorer.exe explorer.exe
恢復後:
友情提示
去掉箭頭以後,注意區分原始檔案和快捷方式。
3.後續問題
執行指令碼,去掉小箭頭後,工作列的圖示無法直接使用,也不能重新繫結到工作列。此時,重新編寫指令碼,內容如下,然後改檔案拓展名為 .reg
,雙擊執行,最後登出或者重啟即可解決。
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\lnkfile]
"IsShortcut"=""
[HKEY_CLASSES_ROOT\piffile]
"IsShortcut"=""
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]
"29"="C:\\\\Windows\\\\System32\\\\shell32.dll,50"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]
"29"="C:\\\\Windows\\\\System32\\\\shell32.dll,50"