<HTML><HEAD>
<META charset=US-ASCII http-equiv=Content-Type content="text/html; charset=US-ASCII">
<META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
<BODY style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; BACKGROUND-COLOR: #ffffff">
<DIV>better late than never..</DIV>
<DIV>&nbsp;</DIV>
<DIV>heres some html code which will run without a server..just save it to a file and&nbsp;open it up in Internet Explorer.</DIV>
<DIV>when you click the button on the form, it will run a dos command, on the local machine.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Its a simple way to create a cheap interface to dos commands, for non techy end users.</DIV>
<DIV>&nbsp;</DIV>
<DIV>requires activestate perl win32. with PerlScript.</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;HTML&gt;</DIV>
<DIV>&lt;HEAD&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;SCRIPT LANGUAGE="PerlScript"&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>sub yourSystem($)</DIV>
<DIV>{</DIV>
<DIV>&nbsp;&nbsp;&nbsp; my $command = shift;</DIV>
<DIV>&nbsp;&nbsp; system($command);</DIV>
<DIV>}</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;/SCRIPT&gt;</DIV>
<DIV>&lt;/HEAD&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;BODY&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;form name="blah"&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;INPUT type="button" VALUE="some description" ONCLICK=yourSystem('dir')&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;/form&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;/BODY&gt;</DIV>
<DIV>&lt;/HTML&gt;</DIV></BODY></HTML>