In a computer running Windows 7, I deleted the shortcut to Internet Explorer. In which directory is Internet Explorer installed?

link|improve this question

66% accept rate
feedback

3 Answers

up vote 13 down vote accepted

Press the start button, and start typing "Internet Explorer". It should pop up at the top of the list.

From there, you can drag and drop it as a shortcut to your desktop or wherever you want to put it.

link|improve this answer
1  
+1 for the 'easy way out' :) – Molly7244 Jan 29 '10 at 20:01
feedback

Important Windows 7 no longer supports the ability to modify the registry to get the special Internet Explorer icon to appear on your desktop. This change was made to ensure Internet Explorer could be removed easily for compliance reasons.

OK, let's forget about this official business for a moment :)

If you want the special Internet Explorer icon back, copy the following code into Notepad:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{00000000-0000-0000-0000-100000000001}]
@="Internet Explorer"

[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}]
@="Internet Explorer"

[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}\\DefaultIcon]
@="C:\\Windows\\System32\\ieframe.dll,-190"

[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}\\shell]
@=""

[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}\\shell\NoAddOns]
@="No add-ons(&N)"

[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}\\shell\NoAddOns\Command]
@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" -extoff"

[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}\\shell\Open]
@="Open home page(&H)"

[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}\\shell\Open\Command]
@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\""

[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}\\shell\Set]
@="Properties(&R)"

[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}\\shell\Set\Command]
@="\"C:\\Windows\\System32\\rundll32.exe\" C:\\Windows\\System32\\shell32.dll,Control_RunDLL C:\\Windows\\System32\\inetcpl.cpl"

save it as REG file, i.e. IEicon.reg. import this file into the registry and press F5 to refresh your desktop.

Voilá, there's your special Internet Explorer icon in all its beauty :)

enter image description here

No ugly shortcut arrow, and the usual options of the special icon (Properties will open Internet Options) ... oh, and it is perfectly safe from accidental deletion. :)

If you want to remove this icon, delete the following registry key:

HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-100000000001}

link|improve this answer
1  
+1 for the "awesome way out" :-) – Chris Dwyer Jan 29 '10 at 20:04
1  
@Molly If I ever get my answers downvoted w/o a comment, I assume they just didn't like my tone. – Chris Dwyer Jan 29 '10 at 20:06
1  
@Chris Dwyer - well, i assume they have no good reason and if they do, they're lacking the guts to let the readers know why they think it's a poor answer, bad style either way. – Molly7244 Jan 29 '10 at 20:08
feedback

C:\Program Files (x86)\Internet Explorer\iexplore.exe on 64-bit
C:\Program Files\Internet Explorer\iexplore.exe on 32-bit

link|improve this answer
Isn't it the other way around? – harper89 Feb 29 at 21:39
No. There is no \Program Files(x86) folder on a 32-bit Windows. – MDMarra Feb 29 at 22:28
Ahh i see what you are saying now(thats for the 32 bit .exe on that bit type). I read it as the 64 bit version is in x86 and the 32 bit version is not. – harper89 Feb 29 at 22:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.