|
Fixing IE javascript links |
|
Friday, 04 August 2006 |
|
Sometimes in IE when you try to open links that open in new windows, they don't open. At the bottom left of the IE window you will see a yellow triangle which indicates its a Javascript problem.
- Start » Run » Type regsvr32 /s URLMON.dll
- Then do the same but change the DLL names to the following:
scrrun.dll Msxml.dll Mshtml.dll Shdocvw.dll Browseui.dll Msjava.dll Actprxy.dll Jscript.dll Vbscript.dll oleaut32.dll
- Restart IE and your links should be fine.
- Alternatively you can copy this in to a text file and save it as a batch file (.bat file)
regsvr32 /s scrrun.dll regsvr32 /s Msxml.dll regsvr32 /s Mshtml.dll regsvr32 /s Shdocvw.dll regsvr32 /s Browseui.dll regsvr32 /s Msjava.dll regsvr32 /s URLMON.dll regsvr32 /s Actprxy.dll regsvr32 /s Jscript.dll regsvr32 /s Vbscript.dll regsvr32 /s oleaut32.dll - This will re-register all the DLL files. All of the above are used by IE.
|