Link to home
Start Free TrialLog in
Avatar of detox1978
detox1978Flag for United Kingdom of Great Britain and Northern Ireland

asked on

Open HREF link in FireFox from IE

Hi All,

All our employees use IE as their web browser.  We have a couple of legacy web applications that arent compatible.  As a work around we install an old version of FireFox, which can run the websites without issue.

I would like to place a link on our intranet (accessed in IE), which opens the browser in Firefox.

Can this be done?

All PC's are connected to the domain and I have admin rights to them.


many thanks
Avatar of Rainer Jeschor
Rainer Jeschor
Flag of Germany image

Hi,
this will normally not be possible from an intranet page.
Alternative solutions:
- Deploy / create short cuts on the desktop and name it like the web applications usage
- Use a HTA:
http://forums.asp.net/t/1652038.aspx?How+can+we+force+a+link+to+open+a+URL+in+a+different+browser+

Just my 2ct.
HTH
Rainer
ASKER CERTIFIED SOLUTION
Avatar of Duy Pham
Duy Pham
Flag of Viet Nam image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Yes, but only by creating  a Java web applet and having it launch the other browser. Set whether or not the app should load based on javascript which checks your current browser user agent string. Info on specifics:

http://www.tutorialspoint.com/servlets/servlets-quick-guide.htm
http://stackoverflow.com/questions/4688123/how-to-open-the-command-prompt-and-insert-commands-using-java
http://stackoverflow.com/questions/861784/how-to-call-a-web-service-from-jquery
Avatar of detox1978

ASKER

Sorry for the long delay.  Holidays etc...

We got it to work as you suggested, but needed to push out a GPO to add the URL to our Intranet Zone and pushed out the IE ActiveX setting "initialize and script activex controls not marked as safe" = Enabled (only for the Intranet Zone, I'm not crazy)

I didn't realise ActiveX was so easy to use or setup!  I can now execute any command on the users PC via the browser, so have added a load of script on the intranet for users to run via their browser.  e.g. remap network drives, ping test, telnet SMTP test, ipconfig/all etc... that write the results to notepad then open the file for them to read the results back.... :)


Many thanks.