2ge has asked for the wisdom of the Perl Monks concerning the following question:
Please help. I am using windows 2003 server.use strict; use warnings; use Win32::TieRegistry( Delimiter=>"/", ArrayValues=>0 ); use Win32::API; #proxy in IE is disabled now my $regpath = 'HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVer +sion/Internet Settings/'; my $penable = $regpath . 'ProxyEnable'; $Registry->{$penable}= '0x00000001'; print my $pe = $Registry->{$penable}; #prints '0x00000001', so value i +s stored my $InternetSetOption = Win32::API->new("wininet", "InternetSetOption" +, [qw(N N N N)], 'N'); $InternetSetOption->Call(0, 39, 0, 0) || die "$!\n"; $InternetSetOption->Call(0, 37, 0, 0) || die "$!\n";
resources I've found: [1] http://msdn.microsoft.com/library/default.asp?url=/library/en-us/w +ininet/wininet/internetsetoption.asp [2] http://msdn.microsoft.com/library/default.asp?url=/library/en-us/w +ininet/wininet/option_flags.asp [3] http://aspn.activestate.com/ASPN/Mail/Message/pdk/1739515 [4] http://www.codeproject.com/internet/changeproxy1.asp
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: realtime change IE proxysettings
by xorl (Deacon) on Apr 11, 2005 at 18:11 UTC | |
by 2ge (Scribe) on Apr 12, 2005 at 07:51 UTC | |
|
Re: realtime change IE proxysettings
by Anonymous Monk on Dec 25, 2014 at 04:12 UTC |