Hi thanks for all the help so far! I want to be able to write lines to the Autoexec.bat file on Win95 clients I was wanting to use:

IF INGROUP ("TESTING-GRP")
OPEN( 2 ,"c:Autoexec.bat" , 4)

$x = WriteLine( 2 , “KiXtart started at ” + @TIME + Chr(13) + Chr(10) )

ELSE

BEEP

? "failed to open file, error code : [" + @ERROR + "]"

ENDIF

Does this look right also how would you handle writing multiple lines?