I'm sure if anyone has posted an update to this, but this should work!!!$ie=createobject("internetexplorer.application")
$ie.addressbar="0"
$ie.menubar="0"
$ie.toolbar="0"
$ie.statusbar="0"
$ie.resizable="0"
$ie.height=440
$ie.width=380
$ie.visible="true"
$ie.navigate("about:blank") while $ie.busy<>0 and @error=0 loop
$doc=$ie.document
$= $doc.open
$= $doc.write("<title>Logon script for %username%</title>")
$= $doc.write("<h4>Setting environment variables ...</h4>") sleep (3)
$= $doc.write("<h4>Checking for known viruses ...</h4>") sleep (3)
$= $doc.write("<h4>Mapping network drives ...</h4>") sleep (3)
$= $doc.write("<h4>Cataloging local system ...</h4>") sleep (3)
$= $doc.write("<h4>Checking for Internet Explorer updates ...</h4>") sleep (3)
$= $doc.write("<h4>Updating Internet Explorer ...</h4>") sleep (3)
$= $doc.close
$ie.quit
$ie=0