home *** CD-ROM | disk | FTP | other *** search
INI File | 2002-05-24 | 2.7 KB | 103 lines |
- ;
- ; File: IoInst.ini
- ;
- ; Description: Template file for I/O Installer.
- ;
- ; Author: Steve Hines
- ;
- ; Origin Date: 2/18/99
- ;
- ;
- ; This file should be renamed "XxxIoIns.ini" where Xxx is
- ; the three-letter code for the division.
- ;
- ; The I/O installer should be named "XxxIoIns.exe"
- ;
- ; The Monitors section lists Language/Port monitors that should be added.
- ; Note that if the monitors already exist they will be deleted before file
- ; copying begins, and then added back afterwards. The section has the form:
- ; <#> = [^]<monitor dll>,[^]<monitor name>
- ;
- ; The Drivers section lists device driver services that should be added.
- ; If the services already exist they will be stopped, but not deleted,
- ; before the copying beings, and then restarted afterward. The section
- ; has the form:
- ; <#> = [^]<service name>,[^]<service it depends on>,[^]description
- ;
- ; The Files sections below list files to be installed. Each file list
- ; has the form:
- ; <#> = [^$]<filename>
- ;
- ;
- ; Where:
- ; # is the index of the file in the list. The indices must be
- ; sequential starting with 0 for the first file in the list.
- ;
- ; ^ optionally denotes that the text that follows should be
- ; interpreted verbatim. Use this for names or descriptions
- ; that do not want the division prefix.
- ;
- ; $ optionally denotes that the file is not compressed. If supplied
- ; with ^, it must always *follow* that option.
- ;
- ; <...> Text in a section. If not preceded with a ^, the division
- ; prefix will be attached.
- ;
- ; If the filename ends in .sys, the file will be copied to system32\drivers.
- ;
- ; If the filename ends in .vxd, the file will be copied to the system dir.
- ;
- ; All other files are copied to the system dir.
- ;
- ; Examples:
- ;
- ; 0=ParNt.sys - Decompresses XxxParNt.sy_ to XxxParNt.sys and copies
- ; it to system32\drivers.
- ;
- ; 1=^Dot4.sys - Decompresses Dot4.sy_ to Dot4.sys and copies it to
- ; system32\drivers.
- ;
- ; 2=^$Dot4Rtl.dll - Copies Dot4Rtl.dll to system (Win9x) or system32 (NTx)
- ;
-
- ; Language/Port Monitors
- [Monitors]
- 0=^Dot4Mon.dll,^Dot4 Monitor
-
-
- ; Device drivers
- [Drivers]
- 0=ParNt,^parport,^Parallel Port Driver
- 1=^Dot4,ParNt,^1284.4 Protocol Driver
-
-
- ; Files for all O/Ss and all divisions
- [Files]
- 0=^$Dot4Mon.dll
- 1=^$Dot4Rtl.dll
- 2=^$PmlDrv.exe
- 3=^$PmlRtl.dll
-
- ; Files for all O/Ss, specific to division Xxx
- [Files Xxx]
-
-
- ; Files for NT for all divisions
- [NT Files]
- 0=$ParNt.sys
- 1=^$Dot4.sys
-
-
- ; Files for 95 for all divisions
- [95 Files]
- 0=$Par95.vxd
- 1=^$Dot4.exe
-
-
- ; Files for NT, specific to division Xxx
- [NT Files Xxx]
-
-
- ; Files for 95, specific to division Xxx
- [95 Files Xxx]
-