LOGTIME.EXE v1.0 Copyright (C) Microsoft Corporation 1996.  
Written by Joseph Pagano, Microsoft Consulting Services (MCS).

Syntax:  LOGTIME "text string"  -- creates log file
         LOGTIME /?             -- displays help message

Writes log file LOGTIME.LOG with date and time stamp next to 
the specified command line parameter. This is useful when called 
from within a batch file to record the start and stop time 
of a command line program. LOGTIME.LOG is appended and not
overwritten.

 Sample batch file GO.BAT: 

  logtime "begin import program"

  import.exe 

  logtime "end import program"

 Sample LOGTIME.LOG output

  05/27/96 13:14:19  begin import program 
  05/27/96 13:15:07  end import program 

