CONFIG.SYS RUN Statements
Return to The Config.sys Documentation Project Main Page
The Run statement in your config.sys file is used to run a program during boot up. Programs started by Run are executed in the background. The following pages describe these entries:
RUN=ACTVCOLL.EXE
Executable from Process Commander. The ACTVCOLL line gathers resource use information about sessions.
NOTE: By Mikus Grinbergs: For activity collection to work with FP12 systems and beyond, EXEPATCH must have been used to "hook" Process Commander into DOSCALL1.DLL.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=AEFSDMN.EXE
The AEFS daemon.
The syntax is: aefsdmn *
It is typically started in CONFIG.SYS by a RUN statement (NOT a CALL statement) or from a script using the detach command.
You can change the options of a running daemon with aefsparm. The syntax is the same. The parameters given to aefsparm are sent verbatim to the daemon. Error messages appear in the log file (if there is one).
The options are:
- --logfile Write log messages to the file specified by . By default, messages are written to standard error (which is the nul device if the daemon is started from CONFIG.SYS or using detach).
- --loglevel Set the severity threshold of log messages. Only messages with a severity lower than or equal to the log level are actually written to the log file. The levels are:
- 1 Fatal
- 2 Evil (i.e. not fatal but worse than a `normal' error)
- 3 Error
- 4 Warning
- 9 Debug
- --cache Set the maximum size of the cache per volume in 512-byte units. The default is 4096, or 2 megabytes per volume.
- --storagefiles Set the maximum number of open storage files per volume. To speed up access to the encrypted files AEFS keeps the most recently used ones open. The default is 16. This number should not be made too high; otherwise the daemon might run into the open file limit of the C runtime library (use emxbind -a aefsdmn.exe -h to change this).
- --files Set the maximum number of files for which AEFS may cache sectors. Every file in the cache has a slight overhead; hence the limit. The default is 4096 files.
- --lastaccess=[active|lazy] Specify whether the last-accessed fields of files should be updated always (`active') or only if other fields have changed as well (`lazy'). The default is `active'.
- --lazy=[on|off] Specify whether lazy-writing (or `write-behind') should be enabled. The default is `on'. If lazy-writing is enabled, AEFS will flush every volume every 5 seconds. This interval cannot currently be changed.
- --quit Kill the daemon. Useful for debugging. Detach all attached volumes first.
- --info Print statistics about the memory allocation of the daemon and about every attached volume. These appear in the log file.
NOTE: most options do not take effect for volumes that are already attached, only for volumes attached after aefsparm is run.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=AFNBINI.EXE
This daemon monitors/setups Netbios.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=APMDAEMN.EXE
New in Fixpaks, fixes some errors when using APM 1.2
NOTE: Using APMDAEMN could lead into inaccessability of attached drives on Thinkpads after 'awakening' from sleep mode (e.g. the Floppy-Disk of the TP560 refuses to work).
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=ASP4INIT.EXE
Vortex AU8820 OS/2 initialization.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=ATKINIT.EXE
From Lanserver for Macintosh.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=BATSERV.EXE
This is used by the Watcom C/C++ Compiler.
RUN=C:\Apps\Watcom_C\Binp\batserv.exe
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=CACHE.EXE
This entry controls the behavior of the HPFS cache. It is normally not set in your config.sys. Set it only if you want to change the default settings. If you encounter any problems with this statement then delete it from your config.sys file and set it up in your startup.cmd file.
RUN=C:\OS2\Cache.exe Parameters
Default settings:
- LAZY: ON (use 1 thread)
- BUFFERIDLE: 500 ms
- MAXAGE: 5000 ms
- DISKIDLE: 1000 ms
- READAHEAD: ON
Parameters:
You can use the "/" or the "-" at the beginning of each parameter.
- /LAZY:value
Value can be ON or OFF or in the range from 0 to 64 . Default = ON If this parameter is not set it defaults to 3 . The OS/2 online help says: "If this parameter is set no other parameters are allowed." This depends on your system, some user reported me that two lines gives errors at boot.
o /LAZY:ON Lazy writing is on, three threads are used.
o /LAZY:OFF Lazy writing is turned Off.
o /LAZY:n n lazy write threads are used.
- /DISKIDLE:value
Value can be in the range from 0 to 65535 . Default= 1000 The value is expressed in milliseconds. This is the amount of time that the disk is idle before data can be written from cache to disk.
- /BUFFERIDLE:value
Value can be in the range from 0 to 65535 . Default= 500 The value is expressed in milliseconds. This is the amount of time that the cache-buffer can be idle before the cache data must be written to disk. The OS/2 Online help says that the BUFFERIDLE time must be smaller than the DISKIDLE time. I think this is wrong!
- /MAXAGE:value
Value can be in the range from 0 to 65535 . Default= 5000 The value is expressed in milliseconds. This is the time data waits in the cache before the data is written to disk.
- /READAHEAD:value
Value can be ON or OFF or 0 or 1 . This Parameter enables the read ahead buffer. Only from Warp 4.0
- /DIRTYMAX:value
Value can be in the range from 0 to 65535 . The value is expressed in milliseconds.
- /WRITECACHE:value
Value can be in the range from 0 to 65535 . The value is expressed in kilobytes.
See the examples below.
If you want to turn lazy writing off, add this line to your config.sys:
RUN=C:\OS2\CACHE.EXE /LAZY:OFF
If you want to turn lazy writing on and set bufferidle to 4 seconds, add this line to your config.sys:
RUN=C:\OS2\CACHE.EXE /BUFFERIDLE:4000
If you want to turn readahead off, add this line to your config.sys:
RUN=C:\OS2\CACHE.EXE /READAHEAD:OFF
TIP: Lazy writes can also be turned ON or OFF at an OS/2 command prompt.
WARNING: If you include the /LAZY parameter, then the CACHE statement will IGNORE ALL OTHER PARAMETERS in the line. Therefore, if you want to turn lazy writes off (or on) and also change some other parameter, you will need two RUN statements.
WARNING: There is a bug in OS/2 version 2.1 which does not appear to have been fixed in Warp. You can't turn lazy writes off from the config.sys file. The WPS always turns lazy writes ON when it loads regardless of what your CACHE.EXE command sets. So, if you want lazy writes off, you will need to run the CACHE command AFTER the WPS starts. Create a CMD file to turn it off and place it in your Startup folder. The WPS has already done it's thing when the objects in the Startup folder are opened. You can also turn it off from a command prompt.
TIP: According to the OS/2 Guild running Voicetype in Warp 4.0 is speeded up with /READAHAED:ON According to one source at IBM, there are two other undocumented parameters. "Mr. HPFS" Doug Azzarito of IBM - Austin recommends them for testing only.
NOTE: Nearly everybody has his own recommendations about the correct size, so don't bother if you find different recommendations. Better try what is working best on YOUR system.
TIP: These settings can also easily done by using Warp'nGO or Xfolder Ver.080 and higher. Available at http://www2.rz.hu-berlin.de/~h0444vnd/os2.htm
NOTE: The HPFS.IFS config.sys file line sets up the cache and uses the system defaults. This config.sys file line is only used to modify the cache parameters.
TIP: You can check to see what parameters the HPFS cache is currently set at by going to an OS/2 command prompt and keying in the word CACHE and pressing the enter key.
NOTE: The full line of options must be on one line. If split into more than one line, the options split off will be ignored.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=CACHE386.EXE
Enables the cache for HPFS386. Only valid for the OS/2 Warp server advanced otherwise CACHE386.EXE is started by the following command:
CALL=C:\OS2\CMD.EXE /Q /C C:\IBM386FS\CACHE386.EXE >NUL
Call to the cache program for HPFS386
options for CACHE386 (x is an optional drive letter):
- /OPTIONS[:x]
Display current configuration
- /STATS[:C|:D]
Display, clear, or dynamically display statistics
- /LAZY[:x][:ON|:OFF]
Enable or disable lazy writing
- /MAXAGE[:x]:n
Change msDataAge to n milliseconds
- /BUFFERIDLE[:x]:n
Change msIdleBuf to n milliseconds
If no drive (x) is given, the option will apply to all HPFS drives.
Each option may be abbreviated to a single letter, for example:
CACHE386 /B:D:1000 (sets BufferIdle to 1000 for drive D)
ATTENTION: This entry has to be done manually. If this statement is not added you'll get the following error 'Net 3091: the Cache386.exe is not running. The server cannot be started.
Adding the parameter /STATS will display the statistic usage cache usage. This will help you to size the cache to a size where the minimum sized cache achieves the maximum hit rate.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=CALIBRATE.EXE-C
See DEVICE TOUCH.SYS
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=CBSSVR.EXE
Runtime part of the ZipStream/CryptStream compressed/secure file system products. For more information visit www.carbonbased.com.au
NOTE: Should normally be at the end of config.sys
RUN=CDWFSD.EXE
Starts the background process for the RSJ CD-Writer, responsible for writing of data on the CD.
Parameter:
- -q
Request confirmation
- -d
All accesses to the file system are protocolled at the serial interface COM2.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=CFOSD2.EXE
Starts the Cfos-Daemon.
RUN=C:\Cfos\Cfosd2.exe
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=CLKBASIC.EXE
eCS Clock Daemon. eCS Clock is developed by Mark Eckstein and intended to run only on eComm Station available at: ftp.ecomstation.com
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
No | No | No | No | Yes | Yes |
RUN=CNTRL.EXE
It controls the stack for TCP/IP. TCP/IP Stack processing. CNTRL.EXE is a very important component of the stack. CNTRL.EXE provides threads for proper running of the stack. It provides a thread for each of the following: - IP input processing - TCP slow timeout processing - Debug thread for IP - ARP timeout processing - Ifndis debug thread - Watchdog thread for the adapter status - Loopback IP packets processing CNTRL.EXE is normally started from CONFIG.SYS with a RUN=statement. It should be the first program to begin executing when TCP/IP is started. CNTRL.EXE for Version 4 is different from that in the Version 2.0 stack
RUN=C:\Mptn\Bin\Cntrl.exe Parameter
Parameters:
- /V
This option enables the pointer and parameter verification by MPTS.
- /SM value
Number of small mbufs that MPTS allocate at initialation. Small mbufs are 256 bytes long. Value can be in the range from 512 to 4096 in multiplies of 128. Other values are rounded up to the nearest multiple of 128. Default = 512
- /LM value
Number of large mbufs that MPTS allocate at initialation. Large mbufs are 4096 bytes long. Value can be in the range from 64 to 180 in multiplies of 2. Default = 144
All data sectors received by MPTS are stored in buffers called mbuf, or clusters. There are two types of mbufs. Small mbufs and large mbufs. If needed MPTS can dynamically allocate additional mbufs.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=CWCUTIL.EXE
Crystal DSP manager utility application.
RUN=drive:\MMOS2\CWCUTIL.EXE
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=CWDAEMON.EXE
Crystal OS/2 application for WinOS2 audio.
RUN=drive:\MMOS2\CWDAEMON.EXE
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=DB2UPM.EXE
Runs the U(ser) P(assword) M(anager) from DB2.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
No | Yes | Yes | Yes | Yes | Yes |
RUN=DDAEMON.EXE
This daemon process is required for the Netware requester. A daemon is a background process that usually carries out administrative tasks for the system without you knowing it. This "daemon" is required for the requester to be active.
RUN=C:\Netware\DDaemon.exe <parameter>
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=DMISL.EXE
This is the service layer used by SNMP to map local errors to SNMP alerts. Used by Network Manager and Netfinity, among others, to manage client errors by an administrator.
NOTE: It is not needed, if you doen't have a LAN or you are not using these management tools.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=DTAD.EXE
Streaming Data Transport Agent (DTA) daemon for eComStation.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
No | No | No | No | Yes | Yes |
RUN=EPW.EXE
This is the generic alerter, where the operating system detects errors and can send messages to other machines.
RUN=C:\OS2\EPW.EXE
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=EPWROUT.EXE
Part of First Failure Support in Warp Server for E-Business.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
No | No | No | Yes | Yes | Yes |
RUN=EXT2_LW.EXE
This driver is needed by the ext2 file system driver.
RUN=C:\OS2\Fs\Ext2\Ext2_lw.exe
NOTE: This program has no parameters.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=EXTENDFS.EXE
Part of JFS.IFS in Warp Server for E-Business. Automatically extends all file systems so they use the entire partition on which they reside. This is only the case when you extend the size of a volume using LVM and do not run extendfs afterwards. This entry ensures that at the next reboot at least, the file systems are extended according to the corresponding volume sizes.
RUN=drive:\OS2\EXTENDFS.EXE *
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
No | No | No | Yes | Yes | Yes |
RUN=GENAUDD.EXE
Generic WinOS/2 Audio Driver Daemon component.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
No | No | No | Yes | Yes | Yes |
RUN=HFS.EXE
Helper application used by the Hfs.ifs installable file system.
RUN=C:\OS2\Fs\Hfs\Hfs.exe parameters
Parameters:
- /FN:mode
The Hfs file system allows some characters to be used which are in OS/2 are not allowed. This option controls how these characters should be handled. Mode can be CP850 , 8BIT or 7BIT . The default value is CP850.
- /NOSYNC
With this option you can decrease the performance, but you have to use the Sync utility before you remove a volume from the drive.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=HYBERSET.EXE
This is part of the support for the Dedicated DOS/Windows session feature.
RUN=C:\OS2\System\Hyberset.exe
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=IBMCSFLK.EXE
Exchanges locked files during boot. Normally this is only installed during reboot. If you see this entry the replacement of locked files may have failed. Please check \os2\install\ibmcsflk.lst
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=IBMLANLK.EXE
Exchanges locked files during boot. Normally this is only installed during reboot. If you see this entry the replacement of locked files may have failed. Please check \os2\install\ibmlanlk.lst
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=IOMGSYNC.EXE
Necessary for the Iomega Tools protect, lock, iomgfmt, remount, unitinfo, addman and readme
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=IP2XDMN.EXE
Dualstor Backup Daemon.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=IRDNDS.EXE
Neded to run IBM Infrared NDIS MAC Driver
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=ISOFSDMN.EXE
The isofsdmn program is the file system daemon for the ISOFS installable file system (see IFS STUBFSD.IFS)
It is typically started in CONFIG.SYS by a RUN statement (NOT a CALL statement) or from a script using the detach command.
Values:
--logfile Write log messages to the file specified by . By default, messages are written to standard error (which is the nul device if the daemon is started from CONFIG.SYS or using detach).
--loglevel Set the severity threshold of log messages. Only messages with a severity lower than or equal to the log level are actually written to the log file. The levels are:
- 1
Fatal
- 2
Evil (i.e. not fatal but worse than a `normal' error)
- 3
Error
- 4
Warning
- 9
Debug
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=KBFAST.EXE
Runs keyboard enhancer to speed up keyboard.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=LANDLL.EXE
This starts the TCPIP/peer Stack.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=LANMSGEX.EXE
This is part of the messaging system in MPTS.
RUN=C:\IBMCOM\LANMSGEX.EXE
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=LOGDAEM.EXE
This executable is the daemon process for the system error logging. note: You must have also installed the log.sys driver
RUN=C:\OS2\LOGDAEM.EXE <parameter>
Parameters:
- /E:filename
This is the file in which the log messages are stored and must be a fully qualified filename. NOTE: Like the OS/2 INI files, this file is "locked" and you will not be able to access it with your standard text editor or the OS/2 System Editor. You will get a "violation error". The Enhanced Editor will open the file.
- /W:value
Sets up the size of the error log file. Value can be in the range from 4 Kbytes to 64 Kbytes . Default = 64 Kbytes
NOTE: You can also change the parameters with the Syslog program.
See the example below.
To use C:\OS2\LOG\ERROR.LOG as the error log file with a size of 48 Kbytes, add this line to your config.sys file:
RUN=C:\OS2\LOGDAEM.EXE /E:C:\OS2\LOG\ERROR.LOG /W:48
NOTE: Use SYSLOG.EXE from an OS/2 command line prompt to view your log file.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=LSDAEMON.EXE
This is part of the OS/2 File and Print Client.
RUN=C:\Ibmlan\Netprog\Lsdaemon.exe
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=LT_MON.EXE
Lucent Technologies Modem Monitor An older version is available at http://www.drmartinus.de/notebook2/notebook.htm
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=LVMALERT.EXE
Part of the L(ogical) V(olume) M(anager) in Warp Server for E-Business
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=MIDIDMON.EXE
This is for MIDI.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=MSENSIT.EXE
From the FM-Utils, accelerates the mouse.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=MWSTART.EXE
Daemon for the MWAVE Modem for IBM Thinkpads
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=NBDAEMON.EXE
This statement loads the Netware NetBIOS daemon.
RUN=C:\NETWARE\NBDAEMON.EXE
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=NBTCP.EXE
Three programs, NBTCP.EXE, RFCADDR.EXE and TCPBEUI.OS2, make up the primary runtime components of this NetBIOS over TCP/IP implementation.
NBTCP.EXE is a ring3 module that creates threads for socket processing. This module also processes the two routing extension data files: RFCBCST.LST and RFCNAMES.LST. When NBTCP is invoked it runs RFCADDR.EXE to process these two files. If you modify these files and wish to have the changes take effect without restarting the system, you can run RFCADDR.EXE from the OS/2 command line. RFCADDR.EXE then informs TCPBEUI.OS2 of the changes. This happens, of course, only if you have created one of the other of these two data files and have them specified in the PROTOCOL.INI configuration file.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=ND.EXE
To mount NDFS at startup add this complete line
RUN=drive:\path\ndfs\nd.exe automnt drive:\fullpath\to\resconfig.ndc
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=NDCTL.EXE
Starts Netdrive Control Program. Netdrive is a new utility for OS/2 users which allows to mount an ftp site or a local directory or a network resource to a virtual volume.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=NET.EXE
Starts the requester immediately and not with startup.cmd, the startup folder or with logon.
RUN=drive:\IBMLAN\NETPROG\NET.EXE START REQ
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=NETBIND.EXE
This process binds the protocols to the adapter driver that the NDIS Protocol Manager ( Protman.os2 ) tells it to.
RUN=C:\IBMCOM\PROTOCOL\NETBIND.EXE
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=NMPBIND.EXE
This is used by the Watcom C/C++ compiler.
RUN=C:\Apps\Watcom_C\Binp\Nmpbind.exe
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=NPDAEMON.EXE
This statement provides NamedPipes NetBIOS support for Netware.
RUN=C:\Netware\Npdaemon.exe
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=NVCSRV2.EXE
Part of Norman Antivirus.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=NWDAEMON.EXE
This statement provides IPX packet exchange.
RUN=C:\NETWARE\NWDAEMON.EXE
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=PC.EXE
Executable from Process Commander
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=QRYMMCD.EXE
Queries the Audio CD.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=RAMDISK.EXE
Creates a RAM drive together with RAM(64).IFS every boot.
Variable:
driveletter: - creates a Ramdisk called driveletter:
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=REXINIT.EXE
Makes sure that rexx is loaded and ready to process the MultiDesk2 rexx scripts. MultiDesk2 (available at http://guadagnino.tripod.com) adds Multi User capability - separate Desktop and Sound Scheme for each User.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=RSRV.EXE
By older versions of IBM Open32 for Warp3. Should be deleted after applying Fixpak 26 or higher for Warp3.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=SMSTART.EXE
This statement loads and controls following system management daemons:
- Ffst.exe
- Erlogger.exe
- Dmisl.exe
- remoterr.exe
If one of the daemons dies, the Smstart starts over.
RUN=C:\OS2\Smstart.exe
TIP: A REM in front of RUN=drive:\OS2\SMSTART.EXE will stop the following processes: SMSTART.EXE, DMISL.EXE the Desktop Management Interface service layer, ERLOGGER.EXE the error logger and FFST.EXE the first failure support technology. This is advised for all 'normal' users.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=SPDAEMON.EXE
This statement starts the Netware daemon to handle the SPX packets.
RUN=C:\NETWARE\SPDAEMON.EXE
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=START_S0.EXE
For Teles ISDN Cards.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=STHDAEM.EXE
Daemon for StHWMon, a Temperature/Fan/Voltage Monitor for W83781D/W83782D/VIA 82C686 chips.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=TVCTL.EXE
Starts the TVFS control program.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=ULTRADMN.EXE
Run statement for Gravis Ultra Soundcard (discontinued)
Must be used to get MIDI sounds to work with Gravis Ultra Soundcards drive:\ULTRAPNP or drive:\ULTRASND is location for MIDI patches.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=UNICHECK.EXE
Unimaint background daemon.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=UPDSIG.EXE
The tool UpdSig adds or updates adjustable intervals in at most 10 different signature files for mailers and/or newsreaders.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=USBMON.EXE
USB daemon to detect add and removals of devices.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
No | Yes | Yes | Yes | Yes | Yes |
RUN=VDOSCTL.EXE
This statement is used in TCP/IP and provides support for DOS and Windows TCP/IP applications.
RUN=C:\TCPIP\BIN\VDOSCTL.EXE
TIP: If you don't need TCP/IP support in DOS sessions REM this line.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=VFAT-LW.EXE
This driver is needed by the Vfat file system driver.
RUN=C:\OS2\FS\VFAT\VFAT-LW.EXE
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=VFBWC.EXE
Applies Write-Combining to Video Frame Buffer Aperture during startup.
FBWC.exe - Video Frame Buffer to Write-Combining for P6K7MTRR.sys Copyright 1999-2001 Takayuki 'January June' Suwa.
Options:
-1 rounds Pages up to 1MB granule -a applies settings to MTTRs actually -b rings beep when setting is applied -d goes into daemon mode, waits until APM suspend resuming and re-apply -i turns to invalid settings to video frame buffer aperture /uncacheable to VGA region -v also applies write-combining to VGA region -? displays this message
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=VLANINIT.EXE
Part of OS/2 Virtual LAN Kernel.
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |
RUN=Vnrminit.exe
This statement is used by the File and Print Client.
RUN=C:\Ibmlan\Netprog\Vnrminit.exe
Platform Support:
OS/2 2.x | OS/2 3.0 | OS/2 4.0 | OS/2 4.5x | eCS 1.x | eCs 2.x |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |