use Win32::OLE; my $ie = Win32::OLE->new("InternetExplorer.Application") or die "oops: ".Win32::OLE::LastError(); $ie->{'Visible'}=1; $ie->Navigate("http://www.perlmonks.org/"); sleep(1); $ie->ExecWB(6,0);