Jump to content

圖標小箭頭


Recommended Posts

Go to Control Panel\Appearance and Personalisation\Personalisation, click change desktop icons, select the checkboxes near computer, recycle bin and control panel, click ok.
You'll find them on your desktop without the arrows.

post-11233-0-29242300-1414385024_thumb.jpgpost-11233-0-23465400-1414385027_thumb.jpg



Instead, if you don't want to see any arrows at all, you can manually modify the Windows registry:

- open regedit
- navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
- create a new key named Shell Icons
(right-click Explorer, new, key, type exactly Shell Icons, press enter)
- go to the new key
- create a new string value named 29, with value %windir%\System32\shell32.dll,50
(right-click in the right pane, in the blank area, new, string value, type 29, press enter, double-left-click the new value and copy in it %windir%\System32\shell32.dll,50, press enter)
- close regedit
- sign out and sign in


You also can automatically modify the Windows registry, with the following two methods:

First method, using a .reg file
- copy the following code in a notepad, save it as NoArrows.reg (or the name you prefer), double-left-click it and add it to your registry:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]
"29"="%windir%\\System32\\shell32.dll,-50"

- sign out and sign in


Second method, using the reg utility from commnad line
- from an elevated command prompt (right-click start, left-click command prompt (admin)):

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /t REG_SZ /d "%windir%\System32\shell32.dll,-50"

- sign out and sign in


In all those three cases, the registry editor should show this:
post-11233-0-91322300-1414385028_thumb.jpg
And the result on your desktop should be this (shortcuts without arrows):
post-11233-0-68778800-1414385030_thumb.jpg

Note: %windir% = Windows directory, c:\windows (usually)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...