How to kill IE?

lonny

Fearless Thinker
For some reason links in Acrobat Reader will ALWAYS launch IE even if it's not my defaul browser (Safari is).
Why?

Same thing seems to happen with Yahoo Messenger....
 
Ctrl-click on the Internet Explorer application, choose "Show Package Contents". Open the Contents folder and then edit the Info-macos.plist in your editor.

Close to the end you see*
(* the space in < key> < /array> etc, is only to show them in code.)

Code:
< key>CFBundleURLTypes< /key>

Within it
Code:
< key>CFBundleURLName< /key>
< string>http URL< /string>
< key>CFBundleURLSchemes< /key>
< array>
< string>http< /string>
</array>
< key>LSIsAppleDefaultForScheme< /key 
< true/>

LS is OS X's Launch Services which handles all the file typing and associations for the OS. Deleting these lines should prevent IE from hijacking the browser.


Also, renaming the file /System -> Library -> PreferencePanes -> Internet.prefPane -> Contents -> Resources -> English.lproj* -> DefaultHelperApps.plist to something else, then quitting and relaunching the preferences (and log out/in) could do it. (*Or Italian.lproj, whatever you use your system in).

Gia.
 
Back
Top