home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Sample.dat - V1.2 millsm
- ;
- ; a sample data file for use with 'USERDEF'
- ;
- ; If the first character on a line is a colon (:) then the line contains either
- ; A hardware address - Compared with your cards HW address.
- ; :GLOBALS - Settings for every station.
- ; :DEFAULT - Settings to use if the card wasn't found in the list.
- ;
- ; Anything after a semi-colon (;) is ignored
- ; Any amount of commands can be listed after an address. Another address
- ; will signal the end of the commands.
- ;
- ; The valid commands are:
- ; set <var>=<setting> - Adds the information to the parent's Environment
- ; Space. Checks for duplicates. [Case Sensitive]
- ; dos <command> - Shells out to do a DOS command. [Case Sensitive]
- ; echo <string> - Prints out the string to the screen.
- ;
-
- :GLOBALS ; Settings for all stations (not considered a found Address)
- echo Assigning printer ports.
- dos setprint lpt1 /p:x3700@utility@compctr /b:MillsDude
-
- :00:00:C0:C6:02:18; 0x280
- set STATION=01
-
- :00:00:C0:A3:F4:17; 0x280
- set STATION=02
-
- :00:00:C0:3D:E8:17; 0x280
- set STATION=03
-
- :00:00:C0:ED:E2:17; 0x280
- set STATION=04
-
- :00:00:C0:64:0A:18; 0x280
- set STATION=05
-
- :DEFAULT ; for stations not found in the above list of addresses
- set STATION=??
-