Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows 7系統教程 >> win7系統基礎知識 >> 如何去除Win7系統快捷方式箭頭

如何去除Win7系統快捷方式箭頭

日期:2017/1/24 14:48:08      編輯:win7系統基礎知識
知道正確方法的請飄過~
網上一搜“Win7去快捷方式小箭頭”,10個方法有8個都是不正確的……(為廣大網民寒心……)
大多數人還是按照XP系統去小箭頭的方式去Win7的小箭頭……雖然也能去掉,但是你有沒有發現你的管理打不開了?
你的程序無法鎖定到任務欄?你的程序無法附到開始菜單?……
如果你遇到過上述問題,那這帖你就看對了!
網上也有提到正確的方法,即把一個透明圖樣得到C:\Windows文件夾下,然後把下面這段代碼保存為.reg導入注冊表重啟OK~
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MacHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]
"29"="C:\\Windows\\Empty.ico,0"
為了方便性,我據此寫了個批處理(沒有技術性,高手勿噴~),大家可以雙擊運行一下就能去掉小箭頭了……
由於批處理用到一個透明圖標,所以不能直接復制運行!
去除Win7小箭頭批處理:
@echo off
color 0a
title 去掉Win7小箭頭批處理
for /f %%i in ('cd') do set currentpath=%%i
copy %cd%\Empty.ico c:\Windows
@echo Windows Registry Editor Version 5.00>>D:\tmp.reg
@echo [HKEY_CLASSES_ROOT\piffile]>>D:\tmp.reg
@echo "IsShortcut"="">>D:\tmp.reg
@echo [HKEY_CLASSES_ROOT\lnkfile]>>D:\tmp.reg
@echo "IsShortcut"="">>D:\tmp.reg
@echo [HKEY_LOCAL_MacHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]>>D:\tmp.reg
@echo "29"="C:\\Windows\\Empty.ico,0">>D:\tmp.reg
regedit/s D:\tmp.reg
del D:\tmp.reg
taskkill /f /im Explorer.exe
ping localhost -n 5
start "explorer.exe" "%windir%\explorer.exe"
exit
恢復Win7小箭頭批處理
@echo off
color 0a
title 恢復Win7小箭頭批處理
@echo Windows Registry Editor Version 5.00>>D:\tmp.reg
@echo [-HKEY_LOCAL_MacHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]>>D:\tmp.reg
regedit/s D:\tmp.reg
del D:\tmp.reg
del c:\Windows\Empty.ico
taskkill /f /im Explorer.exe
ping localhost -n 5
start "explorer.exe" "%windir%\explorer.exe"
exit
Copyright © Windows教程網 All Rights Reserved