use Win32::OLE; # standard IE manipulation my $ie=Win32::OLE->new('InternetExplorer.Application'); die('Creating explorer window: ' . Win32::OLE->LastError()) unless $ie; # make visible $ie->{Visible}=1; # hide a lot of UI stuff $ie->{AddressBar} = $ie->{ToolBar} = $ie->{StatusBar} = $ie->{MenuBar} = 0; # force the creation of the document object $ie->Navigate2('about:'); # this is not directly creatable. my $doc=$ie->document(); die('Creating explorer document: ' . Win32::OLE->LastError()) unless $doc; $doc->write('