Link to home
Start Free TrialLog in
Avatar of Panchux
PanchuxFlag for Argentina

asked on

Internet Explorer 8 and pac files (proxy auto configuration)

I need to deploy a pac file using gpo. That seems to be no problem but Internet Explorer 8 just won't take any pac file. I tried lots of pac files and IE8 won't use them.

The one I'm using (see code snippet) works ok with Mozila Seamonkey but not IE.

Even calling the pac file using file:///c:/proxy.pac won't work.

I don't know if it's relevant but pac file will be placed on a network share (file:////ba-dc1/transfer/proxy.pac)

Thanks in advance for your help,

Pancho
function FindProxyForURL(url, host){
	if (dnsDomainIs(host, ".unitan.corp")){
		return "DIRECT";
		}
	return "PROXY 131.107.2.95:3128;";
	}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Rich Rumble
Rich Rumble
Flag of United States of America 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
Avatar of Panchux

ASKER

Thanks for your help, It worked ok when I set up the GP

Pancho