Title: RE: IE Settings

This sounds like an excellent job for GPO or a logon script, like so...


use Win32::TieRegistry( Delimiter=>"\\", ArrayValues=>0 );

my $regstr="\\HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Content\\";

my $regobj=$Registry->{$regstr};

my $megs=hex($regobj->GetValue('CacheLimit'))/1024;

print "The current user's cache limit is $megs megabytes.\n";

my $hexval=pack(C4,0,0,5,0);  #hex for 320 megs
$regobj->SetValue('CacheLimit',$hexval,REG_DWORD);



-----Original Message-----
From: Kipp, James [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 01, 2003 11:40 AM
To: Perl-Win32-Admin (E-mail)
Subject: IE Settings


Is there a module for that can be used to configure IE 5.5 settings? I need
to set a cache limit (for all users) on a bunch of NT machines.

Thanks


_______________________________________________
Perl-Win32-Admin mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to