NETUSER	Building a .BAT file

	This example came from a Class on Windows NT.  A fellow student
	wanted to have a detailed listing of all the users.  There is 
	no command to show the detail for all the users.  DELIMIT can 
	be used to create a .BAT file to get all the details. 

	The command NET USER shows all the users.

	The command NET USER USER06 shows the details for USER06.  

	First we redirect the output of the NET USER command to file 
	NETUSER.LST.  
	Next we copy this file to the file NETUSERS.LST (this will be 
	the 'header' for our detail listing).

	Then we will call DELIMIT to create the file NETUSERS.BAT.  It 
	gets the user names from NETUSER.LST.

	Then we will CALL NETUSERS.BAT to get the detailed listing.

	Then use DELIMIT to find the group memberships for the users
