CONFIG.SYS - SET Statements (Additional software): Difference between revisions
(43 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
==Additional IBM Products== | ==Additional IBM Products== | ||
===Anti Virus=== | ===Anti Virus=== | ||
;IBMAV:Is used by the IBM/Symantec Antivirus program. | |||
Is used by the IBM/Symantec Antivirus program. | SET IBMAV=<path> | ||
SET IBMAV= | |||
===AO Manager=== | |||
*[[SMG_Pl2NlG]] | |||
*[[SMG_PATH]] - Used by the [[IBM Availability and Operations Manager]] | |||
===BookManager=== | ===BookManager=== | ||
Library Reader book path | ;READIBM:Library Reader book path | ||
READIBM=D:\BOOKS | READIBM=D:\BOOKS | ||
===Hyperwise=== | ===Hyperwise=== | ||
Search path | ;HWISE:Search path | ||
HWISE=D:\HWISE | HWISE=D:\HWISE | ||
Data file search path | ;HWDPATH:Data file search path | ||
HWDPATH=D:\HWISE | HWDPATH=D:\HWISE | ||
Line 21: | Line 24: | ||
Set Statements used by the ICAT debugger. | Set Statements used by the ICAT debugger. | ||
;CAT_COMMUNICATION_TYPE:Communication type | |||
Communication type | SET CAT_COMMUNICATION_TYPE=<value> | ||
SET | ;CAT_HOST_BIN_PATH:Defines the path to the debug binaries. | ||
SET CAT_HOST_BIN_PATH=path | |||
:;Parameters:Path can be any full path. If you have several path they must be delimited by a semicolon. | |||
Defines the path to the debug binaries. | ;CAT_Host_Source_Path:Tells the debugger where to find the sources. | ||
SET | |||
;Parameters:Path can be any full path. If you have several path they must be delimited by a semicolon. | |||
Tells the debugger where to find the sources. | |||
SET Cat_Host_Source_Path=path | SET Cat_Host_Source_Path=path | ||
;Parameters:Path can be any full path. If you have several path they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several path they must be delimited by a semicolon. | ||
;CAT_JAVA_ONLY:Controls if you want to be able to debug native method DLL code or not. | |||
Controls if you want to be able to debug native method | |||
SET Cat_Java_Only=value | SET Cat_Java_Only=value | ||
;Parameters:Value can be ON or OFF. | ;Parameters:Value can be ON or OFF. | ||
:If set to OFF or the variable is not set up you can debug native method | :If set to OFF or the variable is not set up you can debug native method DLL code. | ||
;CAT_JVM_ARGS:JVM arguments | |||
JVM arguments | |||
SET CAT_JVM_ARGS=parameters | SET CAT_JVM_ARGS=parameters | ||
;Parameters:Parameters can be any valid option for the JVM. | ;Parameters:Parameters can be any valid option for the JVM. | ||
;CAT_Machine:This variable sets the IP address of the daemon's machine, and it sets the port number to communicate with the daemon. | |||
This variable sets the IP address of the daemon's machine, and it sets the port number to communicate with the daemon. | |||
SET Cat_Machine=value | SET Cat_Machine=value | ||
;Parameters:Value must be an | ;Parameters:Value must be an IP address and a port number. | ||
;CAT_MODULE_LIST:Module list | |||
Module list | |||
SET Cat_Module_List=value | SET Cat_Module_List=value | ||
;Parameters:Value can be any class file. If you have several files they must be delimited by a space. | ;Parameters:Value can be any class file. If you have several files they must be delimited by a space. | ||
;CAT_Package_Path:Package | |||
Package | |||
SET Cat_Package_Path= | SET Cat_Package_Path= | ||
;Parameters:Path can be any full path. If you have several path they must be =delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several path they must be =delimited by a semicolon. | ||
;CAT_PATH_RECURSE:With this variable set the debugger will search recursive into the subdirectories. | |||
With this variable set the debugger will search recursive into the subdirectories. | |||
SET Cat_Path_Recurse=value | SET Cat_Path_Recurse=value | ||
;Parameters:Value must be any non-null value to turn it on. | ;Parameters:Value must be any non-null value to turn it on. | ||
===Java=== | ===Java=== | ||
;[[CLASSPATH]]:Java run-time class path | |||
Controls the playback sample rate for Java audio. | ;JAVA_AUDIO_RATE:Controls the playback sample rate for Java audio. | ||
:<tt>SET JAVA_AUDIO_RATE=<value></tt> | |||
:Parameters:Value can be 8 or 11 or maybe some other values, but I have no more information. | |||
:A value of 8 sets the playback rate to 8000 samples per second. | :A value of 8 sets the playback rate to 8000 samples per second. | ||
:A value of 11 sets the playback rate to 11025 samples per second. | :A value of 11 sets the playback rate to 11025 samples per second. | ||
:If this parameter is not set it defaults to 8. | :If this parameter is not set it defaults to 8. | ||
;JAVA_AUDIO_VOLUME:This environment variable controls the default audio volume for Java applications. | |||
This environment variable controls the default audio volume for Java applications. | :<tt>SET JAVA_AUDIO_VOLUME=<percentage></tt> | ||
:Default settings: | |||
:* SET JAVA_AUDIO_VOLUME=75 | |||
* SET JAVA_AUDIO_VOLUME=75 | :Parameters:Percentage can be in the range from 0 to 100. This value is expressed in percentage. If this parameter is not set it defaults to 75. | ||
;JAVA_CLOCK_RESOLUTION:The environment variable JAVA_CLOCK_RESOLUTION allows you to specify the timer resolution you require from the currentTimeMillis method in the Java.lang.System class. | |||
The environment variable JAVA_CLOCK_RESOLUTION allows you to specify the timer resolution you require from the currentTimeMillis method in the Java.lang.System class. | :<tt>SET Java_Clock_Resolution=<value></tt> | ||
:Parameters:Value can be in the range from 1 to ?. This value is expressed in milliseconds. If this parameter is not set it defaults to 10. | |||
:The timer resolutions available are dependent on those provided by the OS/2 system. The Java system rounds down to the nearest available resolution. 1 millisecond is always available and is the highest resolution available. The default for JAVA_CLOCK_RESOLUTION is 10 milliseconds, and this is generally rounded to 1 millisecond accuracy. If you need to ensure that the best Java performance is obtained when using currentTimeMillis, SET Java_Clock_Resolution = 32. This can be important when running Java benchmarks. | |||
;JAVA_COMPILER:With this variable can you set up the Just-In-Time (JIT) compiler that Java should use. If you want to disable the JIT than use a non-existing name, specify blanks for the name if you want to suppress the "Unable to load DLL" pop-up message. But it is not recommended to turn of the JIT, because this will decrease the speed of Java applications. | |||
:<tt>SET JAVA_COMPILER=<name></tt> | |||
:Parameters:Name can be any JIT compiler. If this parameter is not set it defaults to JavaX. | |||
;JAVA_CONNECT_TIMEOUT:Adjusts the amount of time to wait for a network connection before reporting a timeout. | |||
:<tt>SET Java_Connect_Timeout=<seconds></tt> | |||
:Default settings: | |||
:* SET Java_Connect_Timeout=30 | |||
:Parameters:Value can be in the range from 1 to . This value is expressed in seconds. If this parameter is not set it defaults to 30. | |||
;JAVA_CONSOLE:When SET specifies that Java programs executed using "JavaPM" and "applet" will be run with a Java console. | |||
:<tt>SET Java_Console=<value></tt> | |||
:Parameters:Value can be only 1. If this variable is not set, the console is not used. | |||
;JAVA_HIGH_MEMORY:Since Java 1.18, activates High Memory Support. | |||
:Example: <tt>SET JAVA_HIGH_MEMORY=1</tt> | |||
:'''NOTE:''' VIRTUALADDRESSLIMIT=2048 needs also to be set, otherwise this setting will be ignored. TCP 4.1 or higher must be installed. | |||
:'''NOTE:''' Customers who have had an "Out of memory" or SYS0008 problems on systems using Java should add this line. | |||
= | ;JAVA_HOME:This variable points to the root directory of your Java runtime. | ||
:<tt>SET Java_Home=<path></tt> | |||
:Parameters: Path can be any full path with drive letter. There are no default settings. | |||
; | ;JAVA_MAP_ACCEL:Specifies the accelerator character which Java should map to the OS/2 accelerator character for menu items and buttons. | ||
:<tt>SET Java_Map_Accel=<value></tt> | |||
Specifies the accelerator character which Java should map to the OS/2 accelerator character for menu items and buttons. | |||
;Parameters:Value can be any character. To turn off the accelerator character mapping, specify a tilde(~). If this parameter is not set it defaults to amp. | ;Parameters:Value can be any character. To turn off the accelerator character mapping, specify a tilde(~). If this parameter is not set it defaults to amp. | ||
;JAVA_NLS_SBCS:Specifies that Java should run in single byte character set (SBCS) mode even in double byte character set (DBCS) environments. | |||
Specifies that Java should run in single byte character set (SBCS) mode even in double byte character set (DBCS) environments. | SET JAVA_NLS_SBCS=<value> | ||
SET JAVA_NLS_SBCS=value | |||
;Parameters:Value can be only 1. There are no default settings. | ;Parameters:Value can be only 1. There are no default settings. | ||
;JAVA_NOPRINTDLG:When you set up this, Java will dismiss the printer properties dialogue before printing. | |||
When you set up this, Java will dismiss the printer properties | |||
SET JAVA_NOPRINTDLG=value | SET JAVA_NOPRINTDLG=value | ||
;Parameters:Value can be only 1. If this variable is not set up in your CONFIG.SYS file, Java will show the printer properties | ;Parameters:Value can be only 1. If this variable is not set up in your CONFIG.SYS file, Java will show the printer properties dialogue every time you print from a Java application. | ||
;JAVA_OLD_CHAR_SPACING:The character spacing in strings which use characters from different code pages has been improved in the Java-Version "JDK 1.1.7A IBM build o117-19990506". It is possible that this will adversely affect the display and printing of some character strings in existing applications. The old spacing can be retained by setting this environment variable to ON. | |||
The character spacing in strings which use characters from different | SET JAVA_OLD_CHAR_SPACING=<value> | ||
SET JAVA_OLD_CHAR_SPACING=value | |||
;Parameter:Value can be ON or OFF. If you want to use the old spacing than use SET Java_OLD_CHAR_SPACING=ON. | ;Parameter:Value can be ON or OFF. If you want to use the old spacing than use SET Java_OLD_CHAR_SPACING=ON. | ||
;JAVA_USER:The JAVA_USER variable points to the user specific directory. This directory should contain user specific configurations and settings. It is the same as the "Home" variable on other Java platforms. | |||
The JAVA_USER variable points to the user specific directory. This directory should contain user specific configurations and settings. It is the same as the "Home" variable on other Java platforms. | :<tt>SET JAVA_USER=<path></tt> | ||
;Parameters:Path can be any full path with drive letter. There are no default settings. | ;Parameters:Path can be any full path with drive letter. There are no default settings. | ||
;JAVA_WEBLOGS:This variable will set the path to the directory into which the Java runtime will write weblog files for each started Java process. | |||
This variable will set the path to the directory into which the Java runtime will write weblog files for each started Java process. | :<tt>SET Java_Weblogs=<path></tt> | ||
:Parameters:Path can be any full path with drive letter. If this parameter is not set it defaults to the Weblogs directory under the Java directory. | |||
===Lotus Notes=== | ===Lotus Notes=== | ||
===Lotus SmartSuite=== | ===Lotus SmartSuite=== | ||
;DSSDIR:Is used by the Lotus SmartSuite. | |||
Is used by the Lotus SmartSuite. | SET DSSDIR=Path | ||
SET | |||
;Parameters::Path can be any full path. | ;Parameters::Path can be any full path. | ||
;DSSPATH:Is used by the Lotus Smartsuite. | |||
Is used by the Lotus Smartsuite. | SET DSSPATH=Path | ||
SET | |||
;Parameters::Path can be any full path. | ;Parameters::Path can be any full path. | ||
*[[LOTUS_CLS]] - Lotus SmartSuite search path. | |||
===Mobile File Sync=== | ===Mobile File Sync=== | ||
;HOARDPATH:This used by the Mobile File Synchronization (MFS). | |||
This used by the Mobile File Synchronization (MFS). | SET HOARDPATH=C:\Mfs\Bin\Hp | ||
SET | |||
===OpenDoc=== | ===OpenDoc=== | ||
These are the Set Statements used in the IBM OS/2 Developers Toolkit | These are the Set Statements used in the IBM OS/2 Developers Toolkit | ||
;ODBase:It defines a path for OpenDoc. | |||
SET Odbase=path | SET Odbase=path | ||
;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ||
;ODBasePaths:It defines a path for OpenDoc. | |||
SET OdbasePaths=path | SET OdbasePaths=path | ||
;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ||
;ODCfg:It defines a path for OpenDoc configuration. | |||
SET Odbase=path | SET Odbase=path | ||
;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ||
;ODParts:It defines a path for OpenDoc parts. | |||
SET OdParts=path | SET OdParts=path | ||
;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ||
;ODPartsPaths:It defines a path for OpenDoc parts. | |||
SET OdPartsPaths=path | SET OdPartsPaths=path | ||
;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ||
;ODSrc:It defines a path for OpenDoc source. | |||
SET OdSrc=path | SET OdSrc=path | ||
;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ||
;ODSrcPaths:It defines a path for Opendoc source. | |||
SET OdSrcPaths=path | SET OdSrcPaths=path | ||
;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ||
;ODTMP:It defines a path for Opendoc temporary. | |||
SET ODTMP=<path> | SET ODTMP=<path> | ||
;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several paths they must be delimited by a semicolon. | ||
Line 215: | Line 174: | ||
===PSF/2=== | ===PSF/2=== | ||
Settings by IBM Print Services Facility for OS/2 (PSF/2). | Settings by IBM Print Services Facility for OS/2 (PSF/2). | ||
;AINCODEPATH:Code path | |||
SET AINCODEPATH= | SET AINCODEPATH= | ||
;AINLANGUAGE:Language | |||
SET AINLANGUAGE=ENU | SET AINLANGUAGE=ENU | ||
;AINUPTIMER:Uptime | |||
SET AINUPTIMER=1 | SET AINUPTIMER=1 | ||
;AINWORKPATH:Work path | |||
SET AINWORKPATH | SET AINWORKPATH | ||
===Pen=== | |||
Pen support for OS/2. | |||
SET PENPM=<path>; | |||
SET PEN_INKING_PRIORITY=HIGH | |||
===IBM Software Installer=== | ===IBM Software Installer=== | ||
;EpfInstDir:This points to the directory in which the IBM installer stores information about the installed programs. | |||
This points to the directory in which the IBM installer stores information about the installed programs. | |||
SET Epfinstdir=E:\OS2\Config | SET Epfinstdir=E:\OS2\Config | ||
===VisualAge C++=== | ===VisualAge C++=== | ||
The following SET statements are used in IBM | The following SET statements are used in IBM VisualAge C++. | ||
;CODELPATH:Is used by IBM VisualAge C++. | |||
Is used by | |||
SET CodeLPath=path | SET CodeLPath=path | ||
;Parameters:Path can be any full path. If you have several path they must be delimited by a semicolon. | ;Parameters:Path can be any full path. If you have several path they must be delimited by a semicolon. | ||
;CPPHELP_INI:Help initialisation | |||
SET CppHelp_Ini=path | SET CppHelp_Ini=path | ||
;Parameters:Path can be any full path. | ;Parameters:Path can be any full path. | ||
;CPPLOCAL:Local | |||
SET CppLocal=path | SET CppLocal=path | ||
;Parameters:Path can be any full path. | ;Parameters:Path can be any full path. | ||
;CPPMAIN | |||
SET CppMain=path | SET CppMain=path | ||
;Parameters:Path can be any full path. | ;Parameters:Path can be any full path. | ||
;VACPPMAIN | |||
SET VACPPMAIN=path | |||
;Parameters:Path can be any full path. Used in VisualAge for C++ V4.0 | |||
====CppWork==== | ====CppWork==== | ||
Line 256: | Line 225: | ||
====Html_DbcsNetq==== | ====Html_DbcsNetq==== | ||
This is used by the NetQuestion | This is used by the NetQuestion help system in IBM VisualAge C++ 4.0 and IBM VisualAge for Java. | ||
SET Html_DbcsNetq=Value | SET Html_DbcsNetq=Value | ||
;Parameters:Value can be ON or OFF. | ;Parameters:Value can be ON or OFF. | ||
===NetDrive=== | |||
Set Statements for NetDrive. | |||
SET NDFSDIR=path | |||
;Sample | |||
SET NDFSDIR=C:\Programs\NDFS | |||
===NetQuestion=== | ===NetQuestion=== | ||
Set Statements used by NetQuestion, the help system in IBM VisualAge | Set Statements used by NetQuestion, the help system in IBM VisualAge C++ 4.0, IBM VisualAge for Java and DB2 UDB. | ||
;ImnCcCfgFile | |||
SET ImnCcCfgFile=Netq.cfg | SET ImnCcCfgFile=Netq.cfg | ||
;ImnCsCfgFile | |||
SET ImnCsCfgFile=Netq.cfg | SET ImnCsCfgFile=Netq.cfg | ||
;ImnDataCl | |||
SET ImnDataCl=path | SET ImnDataCl=path | ||
:Parameters:Path can be any full path. | |||
;ImnDataSrv: | |||
SET ImnDataSrv=path | SET ImnDataSrv=path | ||
:Parameters:Path can be any full path. | |||
;ImnNlpsCl: | |||
SET ImnNlpsCl=path | SET ImnNlpsCl=path | ||
:Parameters:Path can be any full path. | |||
;ImnNlpsSrv | |||
SET ImnNlpsSrv=path | SET ImnNlpsSrv=path | ||
:Parameters:Path can be any full path. | |||
;ImnWorkCl | |||
SET ImnWorkCl=path | SET ImnWorkCl=path | ||
:Parameters:Path can be any full path. | |||
;ImnWorkSrv: | |||
SET ImnWorkSrv=path | SET ImnWorkSrv=path | ||
:Parameters:Path can be any full path. | |||
===Imq...=== | ===Imq...=== | ||
Set statements used by the NetQuestion, Help system in IBM | Set statements used by the NetQuestion, Help system in IBM VisualAge C++ 4.0 and IBM VisualAge for Java. | ||
====ImqConfigCl==== | ====ImqConfigCl==== | ||
SET ImqConfigCl=path | SET ImqConfigCl=path | ||
;Parameters:Path can be any full path. | |||
Parameters: | |||
Path can be any full path. | |||
====ImqConfigSrv==== | ====ImqConfigSrv==== | ||
Line 325: | Line 291: | ||
====SPCH_MAINLANG==== | ====SPCH_MAINLANG==== | ||
Defines the language which | Defines the language which VoiceType uses for "VoiceType Navigation". It is only needed when you have more than one VoiceType versions installed. | ||
SET SPCH_MAINLANG=<language> | SET SPCH_MAINLANG=<language> | ||
;Parameter:Language is one of the country and language | ;Parameter:Language is one of the country and language abbreviations as used in the [[LANG]] environment variable. | ||
;Example: Use SET SPCH_MAINLANG=En_US for American | ;Example: Use SET SPCH_MAINLANG=En_US for American English. | ||
====SPCH_PATH==== | ====SPCH_PATH==== | ||
Line 343: | Line 309: | ||
===WorkFrame V3=== | ===WorkFrame V3=== | ||
Set statements used by the IBM VisualAge | Set statements used by the IBM VisualAge C++ and other products. | ||
====IWF.DEFAULT_PRJ==== | ====IWF.DEFAULT_PRJ==== | ||
Line 359: | Line 325: | ||
===Works=== | ===Works=== | ||
====IBMWORKS_INI==== | ====IBMWORKS_INI==== | ||
Here can you define the directory in that IBM Works stores the | Here can you define the directory in that IBM Works stores the IBMWORKS.INI file. | ||
SET IBMWORKS_INI=E:\BONUSPAK\IBMWORKS | SET IBMWORKS_INI=E:\BONUSPAK\IBMWORKS | ||
===LITE_LOCALES=== | ===LITE_LOCALES=== | ||
This is used by the NetQuestion Help system in IBM VisualAge | This is used by the NetQuestion Help system in IBM VisualAge C++ 4.0 and IBM VisualAge for Java. | ||
SET LITE_LOCALES=<path> | SET LITE_LOCALES=<path> | ||
;Parameters:Path can be any full path. | |||
;Parameters: | |||
Path can be any full path. | |||
===LPath=== | ===LPath=== | ||
This is used by the IBM VisualAge | This is used by the IBM VisualAge C++ compiler. | ||
SET LPath=path | SET LPath=path | ||
;Parameters:Path can be any full path. | |||
===LXEVFREF=== | |||
Defines which files should be shown in the Editor Reference Guide. | |||
SET LXEVFREF=EVFELREF.INF+LPXCREF.INF | |||
=== | ===LXEVFHDI=== | ||
LPEX environment for How Do I | |||
Defines which files should be shown in the Editor HowTos. | |||
SET LXEVFHDI=EVFELHDI.INF+LPEXHDI.INF | |||
SET | |||
===VACPP_Shared=== | ===VACPP_Shared=== | ||
Line 403: | Line 366: | ||
==Third Party== | ==Third Party== | ||
===AMD for IMDB=== | ===AMD for IMDB=== | ||
Setting for a database_application. It is an 'os2-browser' for | Setting for a database_application. It is an 'os2-browser' for IMDb (Internet Movie Database), a well-known project for cineaste, developed by Steffen Siebert. | ||
SET AMD_LISTS_PATH=<path> | |||
SET AMD_PATH=<path> | |||
SET AMD_LISTS_PATH= | |||
SET AMD_PATH= | |||
===AWK (gawk)=== | ===AWK (gawk)=== | ||
Line 418: | Line 377: | ||
====AWKPATH==== | ====AWKPATH==== | ||
SET AWK=<path> | SET AWK=<path> | ||
Sets the | Sets the search path for AWK (note the use of slashes (/)) | ||
===BackAgain/2=== | ===BackAgain/2=== | ||
Line 435: | Line 394: | ||
Backup set | Backup set | ||
SET BA2_SET_PATH | SET BA2_SET_PATH | ||
===BigIcons=== | |||
====BIGICONS==== | |||
SET BIGICONS=C:\sys\icons\BIGICONS | |||
===BRIEF=== | ===BRIEF=== | ||
Line 442: | Line 406: | ||
===Changi=== | ===Changi=== | ||
The following | The following SET statements are used by the News server Changi. | ||
SET ChangiAutoFlush=value | SET ChangiAutoFlush=value | ||
SET ChangiHistory=<path> | SET ChangiHistory=<path> | ||
SET ChangiHostName=value | SET ChangiHostName=value | ||
SET ChangiLocalHost=value | SET ChangiLocalHost=value | ||
SET ChangiNewsDir=Path | SET ChangiNewsDir=Path | ||
SET ChangiNodeName=value | SET ChangiNodeName=value | ||
SET ChangiOverDir=Path | SET ChangiOverDir=Path | ||
SET ChangiPathHost=value | SET ChangiPathHost=value | ||
SET ChangiWorkDir=<path> - Working directory | |||
Working directory | |||
===Communigate Pro=== | ===Communigate Pro=== | ||
Line 496: | Line 432: | ||
This includes one or more parameters to be passed to CGServer.exe at startup. | This includes one or more parameters to be passed to CGServer.exe at startup. | ||
SET SUPPLPARAMS=--<parameter 1> <option> --<parameter 2> <option> etc. | SET SUPPLPARAMS=--<parameter 1> <option> --<parameter 2> <option> etc. | ||
;Parameters:Parameters should be preceded by double dashes (i.e., entered just as they would be on the command line). Where a parameter requires an option, use a | ;Parameters:Parameters should be preceded by double dashes (i.e., entered just as they would be on the command line). Where a parameter requires an option, use a white-space to separate the parameter from the option. If multiple parameters are required, separate them with a whitespace and precede the next parameter with double dashes. | ||
===DCF/2=== | ===DCF/2=== | ||
These are the environment variables used by the DCF/2 disk compression program. | These are the environment variables used by the DCF/2 disk compression program. | ||
;DCF2_Acp_Auto_Optimize_Kb_Free | |||
SET Dcf2_Acp_Auto_Optimize_Kb_Free=1024 | SET Dcf2_Acp_Auto_Optimize_Kb_Free=1024 | ||
;DCF2_Acp_Auto_Optimize_Level | |||
SET Dcf2_Acp_Auto_Optimize_Level=0 | SET Dcf2_Acp_Auto_Optimize_Level=0 | ||
;DCF2_Acp_Auto_Optimize_Mins | |||
SET Dcf2_Acp_Auto_Optimize_Mins=60 | SET Dcf2_Acp_Auto_Optimize_Mins=60 | ||
;DCF2_Acp_Cache_Blocks | |||
SET DCF2_Acp_Cache_Blocks=128 | SET DCF2_Acp_Cache_Blocks=128 | ||
;DCF2_Acp_Compression_Level | |||
SET Dcf2_Acp_Compression_Level=2 | SET Dcf2_Acp_Compression_Level=2 | ||
;DCF2_Acp_Debug | |||
SET Dcf2_Acp_Debug=3 | SET Dcf2_Acp_Debug=3 | ||
;DCF2_Acp_Foreground_Compress_Rate | |||
SET Dcf2_Acp_Foreground_Compress_Rate=5 | SET Dcf2_Acp_Foreground_Compress_Rate=5 | ||
;DCF2_Acp_Logng | |||
SET Dcf2_Acp_Logng=3 | SET Dcf2_Acp_Logng=3 | ||
;DCF2_Acp_Maxage_Secs | |||
SET Dcf2_Acp_Maxage_Secs=5 | SET Dcf2_Acp_Maxage_Secs=5 | ||
;DCF2_Acp_No_Clean_And_Close | |||
SET Dcf2_Acp_No_Clean_And_Close=TRUE | SET Dcf2_Acp_No_Clean_And_Close=TRUE | ||
;DCF2_Acp_Out_Of_Space_Suspend | |||
SET Dcf2_Acp_Out_Of_Space_Suspend=512 | SET Dcf2_Acp_Out_Of_Space_Suspend=512 | ||
;DCF2_Acp_Out_Of_Space_Warning | |||
SET Dcf2_Acp_Out_Of_Space_Warning=3072 | SET Dcf2_Acp_Out_Of_Space_Warning=3072 | ||
;DCF2_Acp_Priority | |||
SET Dcf2_Acp_Priority=2 | SET Dcf2_Acp_Priority=2 | ||
;DCF2_Acp_Priority_Delta | |||
SET Dcf2_Acp_Priority_Delta=2 | SET Dcf2_Acp_Priority_Delta=2 | ||
;DCF2_Pdd_Wait | |||
SET Dcf2_Acp_Pdd_Wait=0 | SET Dcf2_Acp_Pdd_Wait=0 | ||
;DCF2_Vdu_G | |||
SET Dcf2_Vdu_G=file | SET Dcf2_Vdu_G=file | ||
===EMX Environment=== | ===EMX Environment=== | ||
;AC_PREFIX:Sets the install directory for GNU autoconf. | |||
Sets the install directory for GNU | |||
SET AC_PREFIX= | SET AC_PREFIX= | ||
;ADA_INCLUDE_PATH:Include path for GNAT the Ada95 Compiler from GNU GCC | |||
SET ADA_INCLUDE_PATH= | SET ADA_INCLUDE_PATH= | ||
;ADA_OBJECTS_PATH:Object path for GNAT the Ada95 Compiler for GCC | |||
SET ADA_OBJECTS_PATH= | SET ADA_OBJECTS_PATH= | ||
;C_Include_Path:Points to the path where the EMX gcc C compiler searches for include files. | |||
Points to the path where the EMX gcc C compiler searches for include files. | |||
SET C_Include_Path=Path | SET C_Include_Path=Path | ||
:Parameters: Path can be any full path. If you have several path they must be delimited by a semicolon. | |||
:Note: You must use the UNIX-like forward slashes instead of the backslashes. See the example below: | |||
SET C_Include_Path=c:/emx/include | |||
*[[CPLUS_INCLUDE_PATH]] | |||
*[[EMXBOOK]] | |||
*[[EMXOPT]] | |||
*[[EMXTZ]] - Timezone | |||
*[[GCCLOAD]] | |||
*[[GCCOPT]] | |||
*[[INFOPATH]] - Info files stored. | |||
*[[LIBRARY_PATH]] - EMX library path | |||
*[[MANPATH]] | |||
*[[OBJC_INCLUDE_PATH]] - Objective C | |||
*[[PROTODIR]] | |||
*[[TMPDIR]] - Directory for temporary files | |||
===Gpf=== | ===Gpf=== | ||
====GPFREXX==== | ====GPFREXX==== | ||
Points to the directory where GPFRexx is installed. | Points to the directory where GPFRexx is installed. | ||
SET GPFREXX=C: | SET GPFREXX=C:\Gpfrexx | ||
====GPFREXXBITMAP==== | ====GPFREXXBITMAP==== | ||
Points to the directory where GPFRexx stores the bitmap files. | Points to the directory where GPFRexx stores the bitmap files. | ||
SET GPFREXXBITMAP=C: | SET GPFREXXBITMAP=C:\Gpfrexx\Bitmap | ||
===Graham | ===Graham Utilities=== | ||
====GU==== | ====GU==== | ||
The GU variable sets up the path where the Graham Utilities are installed. | The GU variable sets up the path where the Graham Utilities are installed. | ||
Line 586: | Line 512: | ||
===HomePage Publisher=== | ===HomePage Publisher=== | ||
====HPP_Base==== | ====HPP_Base==== | ||
Points to the directory in which the | Points to the directory in which the Homepage Publisher is installed. | ||
SET Hpp_base=C:\Hpp21 | SET Hpp_base=C:\Hpp21 | ||
====HPP_Options==== | ====HPP_Options==== | ||
Used by the Home Page Publisher to define a default | Used by the Home Page Publisher to define a default background image for new html files. | ||
SET Hpp_Options=C:\Hpp21\Images\Background.jpg | SET Hpp_Options=C:\Hpp21\Images\Background.jpg | ||
===Inet.Mail=== | ===Inet.Mail=== | ||
This is used by the POP3 and SMTP | This is used by the POP3 and SMTP Mail server Inet.Mail. | ||
====AutoReply==== | ====AutoReply==== | ||
SET AutoReply=<path> | SET AutoReply=<path> | ||
;Parameters:Path can be any full path. | ;Parameters:Path can be any full path. | ||
==== | ====STEWARD_CF==== | ||
SET | SET STEWARD_CF=<path> | ||
;Parameters:Path can be any full path. | ;Parameters:Path can be any full path. | ||
:Value can be any full path. Relative paths are not allowed. | :Value can be any full path. Relative paths are not allowed. | ||
===LIBC Library=== | |||
====LIBCX_HIGHMEM==== | |||
Undocumented | |||
SET LIBCX_HIGHMEM=<parameter> | |||
;Parameters | |||
: 2 | |||
:: It is used for VirtualBox 5.0. to run. | |||
====SET LIBC_UNIX_EAS==== | |||
Controls where EAs are used. | |||
SET LIBC_UNIX_EAS=<parameter> | |||
;Parameters | |||
:Drive letters to include or !exclude | |||
:The ! indicates drives which should not use EAs, while the ones without ! shall have. Drives that are not mentioned will be auto detected. | |||
;Example | |||
:Disable all drives except the N: drive: | |||
SET LIBC_UNIX_EAS=!C-M,N,!O-Z | |||
;Notes | |||
:You can use individual letters or create ranges; use '!' to negate a letter or range. | |||
:'''Note 1''': These EAs must be allowed on your boot drive (or maybe it's just your %UNIXROOT% drive) or "bad things will happen". | |||
===Lucide Document Viewer=== | ===Lucide Document Viewer=== | ||
Line 625: | Line 574: | ||
Allows to run more instances of Mozilla applications simultaneously. | Allows to run more instances of Mozilla applications simultaneously. | ||
SET MOZ_NO_REMOTE=1 | SET MOZ_NO_REMOTE=1 | ||
====MOZILLA_USE_EXTENDED_FT2LIB==== | ====MOZILLA_USE_EXTENDED_FT2LIB==== | ||
Enables special functions to use the Freetype/2 library, if you have Innotek Font Engine installed. | Enables special functions to use the Freetype/2 library, if you have Innotek Font Engine installed. | ||
SET MOZILLA_USE_EXTENDED_FT2LIB=T | SET MOZILLA_USE_EXTENDED_FT2LIB=T | ||
===Object Desktop=== | ===Object Desktop=== | ||
This are the SET statements used in the Stardock Object Desktop application. | This are the SET statements used in the Stardock Object Desktop application. | ||
==== | ====OBJD_ALLVISIBLE==== | ||
Allows all invisible objects to be in Control Center browser objects. | Allows all invisible objects to be in Control Center browser objects. | ||
SET | SET OBJD_ALLVISIBLE=1 | ||
==== | ====OBJD_AUTOTILENAV==== | ||
Enables the Norton Commander look in the Object Navigator window. | Enables the Norton Commander look in the Object Navigator window. | ||
SET | SET OBJD_AUTOTILENAV=1 | ||
==== | ====OBJD_DISABLEFASTMOVE==== | ||
With this option enabled, the Control Center will switch between virtual desktops with a slow and safe method, this prevents Traps which may occour with Warp3 FP16-FP18. | With this option enabled, the Control Center will switch between virtual desktops with a slow and safe method, this prevents Traps which may occour with Warp3 FP16-FP18. | ||
SET | SET OBJD_DISABLEFASTMOVE=1 | ||
==== | ====OBJD_LOG==== | ||
When this is set up, trap logs are automatically written to the objdtrap.log file, whenever an error occurs. | When this is set up, trap logs are automatically written to the objdtrap.log file, whenever an error occurs. | ||
SET | SET OBJD_LOG=Auto | ||
==== | ====OBJD_NODISKASFOLDERS==== | ||
Allows all WPDisk objects in Control Center browser object to be treated as Object Desktop 1.0 disk objects. | Allows all WPDisk objects in Control Center browser object to be treated as Object Desktop 1.0 disk objects. | ||
SET | SET OBJD_NODISKASFOLDERS=1 | ||
==== | ====OBJD_NOF12ROLLUP==== | ||
Disables ALT-F12 roll-up accelerator. | Disables ALT-F12 roll-up accelerator. | ||
SET | SET OBJD_NOF12ROLLUP=1 | ||
==== | ====OBJD_ONAVFULLMENUS==== | ||
With this option set, the Object Navigator will show copy, move... in its context menu. | With this option set, the Object Navigator will show copy, move... in its context menu. | ||
SET | SET OBJD_ONAVFULLMENUS=1 | ||
==== | ====OBJD_URLNOOPEN==== | ||
Disables URL open processing for Stardock Internet Shell Objects. | |||
SET | SET OBJD_URLNOOPEN=1 | ||
==== | ====OBJD_URLNOPAINT==== | ||
Disables URL underline painting for Stardock Internet Shell Objects. | Disables URL underline painting for Stardock Internet Shell Objects. | ||
SET | SET OBJD_URLNOPAINT=1 | ||
===OnCmd=== | ===OnCmd=== | ||
Line 685: | Line 623: | ||
SET ONCMD_DIR=<path> | SET ONCMD_DIR=<path> | ||
;Parameters:Path can be any full path. | ;Parameters:Path can be any full path. | ||
===PDE=== | |||
This is used by PDE (Polumuh Desktop Environment), an alternative GUI user shell for OS/2, eCS and ArcaOS. | |||
====SET PDE_HOME==== | |||
Defines the path where PDE is installed. | |||
SET PDE_HOME=<path> | |||
;Parameters:Value can be any full path. Relative paths are not allowed. | |||
===PMAs=== | ===PMAs=== | ||
This is used by the astronomy program PMAS. | This is used by the astronomy program PMAS. | ||
==== | ====PMAS_INI==== | ||
Defines the Path where PMAS stores its config files. | Defines the Path where PMAS stores its config files. | ||
SET | SET PMAS_INI=<path> | ||
;Parameters:Value can be any full path. Relative paths are not allowed. | ;Parameters:Value can be any full path. Relative paths are not allowed. | ||
====PMAS_Lang==== | ====PMAS_Lang==== | ||
It defines which language the program uses. | It defines which language the program uses. | ||
Line 721: | Line 667: | ||
;Parameters:Value can be any full path. If you have several paths they must be delimited by a semicolon. Relative paths are not allowed. | ;Parameters:Value can be any full path. If you have several paths they must be delimited by a semicolon. Relative paths are not allowed. | ||
==== | ====MASD118_DATA==== | ||
SET | SET MASD118_DATA=<path> | ||
;Parameters:Value can be any full path. Relative paths are not allowed. | ;Parameters:Value can be any full path. Relative paths are not allowed. | ||
=== | ===Qt=== | ||
* [[QT_PM_NO_DIVE]] | |||
===SANE=== | |||
====SANE_CONFIG_DIR==== | ====SANE_CONFIG_DIR==== | ||
Describes the configuration directory path for the SANE program. Points to the installation directory of the OS/2 SANE driver (*.conf). Regard the use of slashes (/). | Describes the configuration directory path for the SANE program. Points to the installation directory of the OS/2 SANE driver (*.conf). Regard the use of slashes (/). | ||
SET SANE_CONFIG_DIR=<path> | SET SANE_CONFIG_DIR=<path> | ||
;Example: | |||
SET SANE_CONFIG_DIR=C:\PROGRAMS\TAME\conf | |||
===SDD=== | ===SDD=== | ||
These are the Set Statements used by the Scitech Software Display Doctor for OS/2. | These are the Set Statements used by the Scitech Software Display Doctor for OS/2. | ||
* [[SDDFONTDPI]] - SDD Font DPI size. | |||
* [[SDDFONTSIZE]] - SDD Font size option. | |||
====SDDHRES==== | ====SDDHRES==== | ||
Line 795: | Line 728: | ||
===SIBYL_REG=== | ===SIBYL_REG=== | ||
This line is used by the Speedsoft Sibyl Pascal compiler to store the registration key. | This line is used by the Speedsoft Sibyl Pascal compiler to store the registration key. | ||
SET | SET SIBYL_REG=<path> | ||
;Parameters:Value can be any full path. Relative paths are not allowed. | ;Parameters:Value can be any full path. Relative paths are not allowed. | ||
Line 801: | Line 734: | ||
This are the SET statements for Spellguard (used in Pronews and other applications). | This are the SET statements for Spellguard (used in Pronews and other applications). | ||
==== | ====SG_DICT_PATH==== | ||
Defines a directory in which ProNews search for the Spellguard dictionary. | Defines a directory in which ProNews search for the Spellguard dictionary. | ||
SET | SET SG_DICT_PATH=C:\Pronews\Spell | ||
Value can be any full path. Relative paths are not allowed. | Value can be any full path. Relative paths are not allowed. | ||
==== | ====SG_USER_PATH==== | ||
Defines a directory in which Pronews search for the Spellguard user-dictionary. | Defines a directory in which Pronews search for the Spellguard user-dictionary. | ||
SET | SET SG_USER_PATH=C:\Pronews\Spell | ||
Value can be any full path. Relative paths are not allowed. | Value can be any full path. Relative paths are not allowed. | ||
Line 814: | Line 747: | ||
====VISPROC==== | ====VISPROC==== | ||
Used by VisPro/C. Points to the directory where VisPro/C is installed. | Used by VisPro/C. Points to the directory where VisPro/C is installed. | ||
SET VISPROC= | SET VISPROC=<path> | ||
;Parameters:Path can be any full path. Relative paths are not allowed. | ;Parameters:Path can be any full path. Relative paths are not allowed. | ||
====VISPRORX==== | ====VISPRORX==== |
Latest revision as of 03:36, 16 January 2024
The Config.sys Documentation Project |
---|
Used by additional software products.
Additional IBM Products
Anti Virus
- IBMAV
- Is used by the IBM/Symantec Antivirus program.
SET IBMAV=<path>
AO Manager
- SMG_Pl2NlG
- SMG_PATH - Used by the IBM Availability and Operations Manager
BookManager
- READIBM
- Library Reader book path
READIBM=D:\BOOKS
Hyperwise
- HWISE
- Search path
HWISE=D:\HWISE
- HWDPATH
- Data file search path
HWDPATH=D:\HWISE
ICAT
Set Statements used by the ICAT debugger.
- CAT_COMMUNICATION_TYPE
- Communication type
SET CAT_COMMUNICATION_TYPE=<value>
- CAT_HOST_BIN_PATH
- Defines the path to the debug binaries.
SET CAT_HOST_BIN_PATH=path
- Parameters
- Path can be any full path. If you have several path they must be delimited by a semicolon.
- CAT_Host_Source_Path
- Tells the debugger where to find the sources.
SET Cat_Host_Source_Path=path
- Parameters
- Path can be any full path. If you have several path they must be delimited by a semicolon.
- CAT_JAVA_ONLY
- Controls if you want to be able to debug native method DLL code or not.
SET Cat_Java_Only=value
- Parameters
- Value can be ON or OFF.
- If set to OFF or the variable is not set up you can debug native method DLL code.
- CAT_JVM_ARGS
- JVM arguments
SET CAT_JVM_ARGS=parameters
- Parameters
- Parameters can be any valid option for the JVM.
- CAT_Machine
- This variable sets the IP address of the daemon's machine, and it sets the port number to communicate with the daemon.
SET Cat_Machine=value
- Parameters
- Value must be an IP address and a port number.
- CAT_MODULE_LIST
- Module list
SET Cat_Module_List=value
- Parameters
- Value can be any class file. If you have several files they must be delimited by a space.
- CAT_Package_Path
- Package
SET Cat_Package_Path=
- Parameters
- Path can be any full path. If you have several path they must be =delimited by a semicolon.
- CAT_PATH_RECURSE
- With this variable set the debugger will search recursive into the subdirectories.
SET Cat_Path_Recurse=value
- Parameters
- Value must be any non-null value to turn it on.
Java
- CLASSPATH
- Java run-time class path
- JAVA_AUDIO_RATE
- Controls the playback sample rate for Java audio.
- SET JAVA_AUDIO_RATE=<value>
- Parameters:Value can be 8 or 11 or maybe some other values, but I have no more information.
- A value of 8 sets the playback rate to 8000 samples per second.
- A value of 11 sets the playback rate to 11025 samples per second.
- If this parameter is not set it defaults to 8.
- JAVA_AUDIO_VOLUME
- This environment variable controls the default audio volume for Java applications.
- SET JAVA_AUDIO_VOLUME=<percentage>
- Default settings:
- SET JAVA_AUDIO_VOLUME=75
- Parameters:Percentage can be in the range from 0 to 100. This value is expressed in percentage. If this parameter is not set it defaults to 75.
- JAVA_CLOCK_RESOLUTION
- The environment variable JAVA_CLOCK_RESOLUTION allows you to specify the timer resolution you require from the currentTimeMillis method in the Java.lang.System class.
- SET Java_Clock_Resolution=<value>
- Parameters:Value can be in the range from 1 to ?. This value is expressed in milliseconds. If this parameter is not set it defaults to 10.
- The timer resolutions available are dependent on those provided by the OS/2 system. The Java system rounds down to the nearest available resolution. 1 millisecond is always available and is the highest resolution available. The default for JAVA_CLOCK_RESOLUTION is 10 milliseconds, and this is generally rounded to 1 millisecond accuracy. If you need to ensure that the best Java performance is obtained when using currentTimeMillis, SET Java_Clock_Resolution = 32. This can be important when running Java benchmarks.
- JAVA_COMPILER
- With this variable can you set up the Just-In-Time (JIT) compiler that Java should use. If you want to disable the JIT than use a non-existing name, specify blanks for the name if you want to suppress the "Unable to load DLL" pop-up message. But it is not recommended to turn of the JIT, because this will decrease the speed of Java applications.
- SET JAVA_COMPILER=<name>
- Parameters:Name can be any JIT compiler. If this parameter is not set it defaults to JavaX.
- JAVA_CONNECT_TIMEOUT
- Adjusts the amount of time to wait for a network connection before reporting a timeout.
- SET Java_Connect_Timeout=<seconds>
- Default settings:
- SET Java_Connect_Timeout=30
- Parameters:Value can be in the range from 1 to . This value is expressed in seconds. If this parameter is not set it defaults to 30.
- JAVA_CONSOLE
- When SET specifies that Java programs executed using "JavaPM" and "applet" will be run with a Java console.
- SET Java_Console=<value>
- Parameters:Value can be only 1. If this variable is not set, the console is not used.
- JAVA_HIGH_MEMORY
- Since Java 1.18, activates High Memory Support.
- Example: SET JAVA_HIGH_MEMORY=1
- NOTE: VIRTUALADDRESSLIMIT=2048 needs also to be set, otherwise this setting will be ignored. TCP 4.1 or higher must be installed.
- NOTE: Customers who have had an "Out of memory" or SYS0008 problems on systems using Java should add this line.
- JAVA_HOME
- This variable points to the root directory of your Java runtime.
- SET Java_Home=<path>
- Parameters: Path can be any full path with drive letter. There are no default settings.
- JAVA_MAP_ACCEL
- Specifies the accelerator character which Java should map to the OS/2 accelerator character for menu items and buttons.
- SET Java_Map_Accel=<value>
- Parameters
- Value can be any character. To turn off the accelerator character mapping, specify a tilde(~). If this parameter is not set it defaults to amp.
- JAVA_NLS_SBCS
- Specifies that Java should run in single byte character set (SBCS) mode even in double byte character set (DBCS) environments.
SET JAVA_NLS_SBCS=<value>
- Parameters
- Value can be only 1. There are no default settings.
- JAVA_NOPRINTDLG
- When you set up this, Java will dismiss the printer properties dialogue before printing.
SET JAVA_NOPRINTDLG=value
- Parameters
- Value can be only 1. If this variable is not set up in your CONFIG.SYS file, Java will show the printer properties dialogue every time you print from a Java application.
- JAVA_OLD_CHAR_SPACING
- The character spacing in strings which use characters from different code pages has been improved in the Java-Version "JDK 1.1.7A IBM build o117-19990506". It is possible that this will adversely affect the display and printing of some character strings in existing applications. The old spacing can be retained by setting this environment variable to ON.
SET JAVA_OLD_CHAR_SPACING=<value>
- Parameter
- Value can be ON or OFF. If you want to use the old spacing than use SET Java_OLD_CHAR_SPACING=ON.
- JAVA_USER
- The JAVA_USER variable points to the user specific directory. This directory should contain user specific configurations and settings. It is the same as the "Home" variable on other Java platforms.
- SET JAVA_USER=<path>
- Parameters
- Path can be any full path with drive letter. There are no default settings.
- JAVA_WEBLOGS
- This variable will set the path to the directory into which the Java runtime will write weblog files for each started Java process.
- SET Java_Weblogs=<path>
- Parameters:Path can be any full path with drive letter. If this parameter is not set it defaults to the Weblogs directory under the Java directory.
Lotus Notes
Lotus SmartSuite
- DSSDIR
- Is used by the Lotus SmartSuite.
SET DSSDIR=Path
- Parameters
- :Path can be any full path.
- DSSPATH
- Is used by the Lotus Smartsuite.
SET DSSPATH=Path
- Parameters
- :Path can be any full path.
- LOTUS_CLS - Lotus SmartSuite search path.
Mobile File Sync
- HOARDPATH
- This used by the Mobile File Synchronization (MFS).
SET HOARDPATH=C:\Mfs\Bin\Hp
OpenDoc
These are the Set Statements used in the IBM OS/2 Developers Toolkit
- ODBase
- It defines a path for OpenDoc.
SET Odbase=path
- Parameters
- Path can be any full path. If you have several paths they must be delimited by a semicolon.
- ODBasePaths
- It defines a path for OpenDoc.
SET OdbasePaths=path
- Parameters
- Path can be any full path. If you have several paths they must be delimited by a semicolon.
- ODCfg
- It defines a path for OpenDoc configuration.
SET Odbase=path
- Parameters
- Path can be any full path. If you have several paths they must be delimited by a semicolon.
- ODParts
- It defines a path for OpenDoc parts.
SET OdParts=path
- Parameters
- Path can be any full path. If you have several paths they must be delimited by a semicolon.
- ODPartsPaths
- It defines a path for OpenDoc parts.
SET OdPartsPaths=path
- Parameters
- Path can be any full path. If you have several paths they must be delimited by a semicolon.
- ODSrc
- It defines a path for OpenDoc source.
SET OdSrc=path
- Parameters
- Path can be any full path. If you have several paths they must be delimited by a semicolon.
- ODSrcPaths
- It defines a path for Opendoc source.
SET OdSrcPaths=path
- Parameters
- Path can be any full path. If you have several paths they must be delimited by a semicolon.
- ODTMP
- It defines a path for Opendoc temporary.
SET ODTMP=<path>
- Parameters
- Path can be any full path. If you have several paths they must be delimited by a semicolon.
PSF/2
Settings by IBM Print Services Facility for OS/2 (PSF/2).
- AINCODEPATH
- Code path
SET AINCODEPATH=
- AINLANGUAGE
- Language
SET AINLANGUAGE=ENU
- AINUPTIMER
- Uptime
SET AINUPTIMER=1
- AINWORKPATH
- Work path
SET AINWORKPATH
Pen
Pen support for OS/2.
SET PENPM=<path>;
SET PEN_INKING_PRIORITY=HIGH
IBM Software Installer
- EpfInstDir
- This points to the directory in which the IBM installer stores information about the installed programs.
SET Epfinstdir=E:\OS2\Config
VisualAge C++
The following SET statements are used in IBM VisualAge C++.
- CODELPATH
- Is used by IBM VisualAge C++.
SET CodeLPath=path
- Parameters
- Path can be any full path. If you have several path they must be delimited by a semicolon.
- CPPHELP_INI
- Help initialisation
SET CppHelp_Ini=path
- Parameters
- Path can be any full path.
- CPPLOCAL
- Local
SET CppLocal=path
- Parameters
- Path can be any full path.
- CPPMAIN
SET CppMain=path
- Parameters
- Path can be any full path.
- VACPPMAIN
SET VACPPMAIN=path
- Parameters
- Path can be any full path. Used in VisualAge for C++ V4.0
CppWork
SET CppWork=path
Html_DbcsNetq
This is used by the NetQuestion help system in IBM VisualAge C++ 4.0 and IBM VisualAge for Java.
SET Html_DbcsNetq=Value
- Parameters
- Value can be ON or OFF.
NetDrive
Set Statements for NetDrive.
SET NDFSDIR=path
- Sample
SET NDFSDIR=C:\Programs\NDFS
NetQuestion
Set Statements used by NetQuestion, the help system in IBM VisualAge C++ 4.0, IBM VisualAge for Java and DB2 UDB.
- ImnCcCfgFile
SET ImnCcCfgFile=Netq.cfg
- ImnCsCfgFile
SET ImnCsCfgFile=Netq.cfg
- ImnDataCl
SET ImnDataCl=path
- Parameters:Path can be any full path.
- ImnDataSrv
SET ImnDataSrv=path
- Parameters:Path can be any full path.
- ImnNlpsCl
SET ImnNlpsCl=path
- Parameters:Path can be any full path.
- ImnNlpsSrv
SET ImnNlpsSrv=path
- Parameters:Path can be any full path.
- ImnWorkCl
SET ImnWorkCl=path
- Parameters:Path can be any full path.
- ImnWorkSrv
SET ImnWorkSrv=path
- Parameters:Path can be any full path.
Imq...
Set statements used by the NetQuestion, Help system in IBM VisualAge C++ 4.0 and IBM VisualAge for Java.
ImqConfigCl
SET ImqConfigCl=path
- Parameters
- Path can be any full path.
ImqConfigSrv
SET ImnConfigSrv=path
- Parameters
- Path can be any full path.
TCP/IP for OS/2
- PMX
DISPLAY LANG PMXFLAGS PMXKEYBOARD PMXUNIX PMXVERSION XFILES
VoiceType for OS/2
IBM VoiceType (only Warp 4 product)
SPCH_BIN
SET SPCH_BIN=<path>
- Parameter
- Value can be any full path. Relative paths are not allowed.
SPCH_MAINLANG
Defines the language which VoiceType uses for "VoiceType Navigation". It is only needed when you have more than one VoiceType versions installed.
SET SPCH_MAINLANG=<language>
- Parameter
- Language is one of the country and language abbreviations as used in the LANG environment variable.
- Example
- Use SET SPCH_MAINLANG=En_US for American English.
SPCH_PATH
SET SPCH_PATH=<path>
SPCH_RUN
SET SPCH_RUN=<path>
SPCH_RW
SET SPCH_RW=<path>
SPCH_TRN
SET SPCH_TRN=Trn
WorkFrame V3
Set statements used by the IBM VisualAge C++ and other products.
IWF.DEFAULT_PRJ
SET IWF.DEFAULT_PRJ=CPPDFTPRJ
IWF.SOLUTION_LANGUAGE_SUPPORT
SET IWF.SOLUTION_LANGUAGE_SUPPORT=CPPIBS30;ENG
IWFHELP
SET IWFHELP=IWFHDI.INF
IWFOPT
SET IWFOPT=
Works
IBMWORKS_INI
Here can you define the directory in that IBM Works stores the IBMWORKS.INI file.
SET IBMWORKS_INI=E:\BONUSPAK\IBMWORKS
LITE_LOCALES
This is used by the NetQuestion Help system in IBM VisualAge C++ 4.0 and IBM VisualAge for Java.
SET LITE_LOCALES=<path>
- Parameters
- Path can be any full path.
LPath
This is used by the IBM VisualAge C++ compiler.
SET LPath=path
- Parameters
- Path can be any full path.
LXEVFREF
Defines which files should be shown in the Editor Reference Guide.
SET LXEVFREF=EVFELREF.INF+LPXCREF.INF
LXEVFHDI
LPEX environment for How Do I
Defines which files should be shown in the Editor HowTos.
SET LXEVFHDI=EVFELHDI.INF+LPEXHDI.INF
This line is used by the IBM VisualAge C++ Compiler.
SET VACPP_Shared=False
Value can be any full path. Relative paths are not allowed.
VBPATH
This line is used by the IBM VisualAge C++ Visual Builder.
SET VBPATH=Path
Parameters:
Path can be any full path. If you have several paths they must be delimited by a semicolon.
Value can be any full path. Relative paths are not allowed.
Third Party
AMD for IMDB
Setting for a database_application. It is an 'os2-browser' for IMDb (Internet Movie Database), a well-known project for cineaste, developed by Steffen Siebert.
SET AMD_LISTS_PATH=<path> SET AMD_PATH=<path>
AWK (gawk)
AWK
SET AWK=
Sets the path to the AWK executable (note the use of slashes (/))
AWKPATH
SET AWK=<path>
Sets the search path for AWK (note the use of slashes (/))
BackAgain/2
Environment variables used by Back Again/2
BA2_CATALOG_PATH
SET BA2_CATALOG_PATH=x:\path
BA2_LOG_PATH
SET BA2_LOG_PATH=x:\path
BA2_SCSI_LOGFILE
SET BA2_SCSI_LOGFILE=x:\SCSILOG.TXT
This will create with BackAgain/2 a logfile of SCSI-related messages. Good for testing errors.
BA2_SET_PATH
Backup set
SET BA2_SET_PATH
BigIcons
BIGICONS
SET BIGICONS=C:\sys\icons\BIGICONS
BRIEF
BBACKUP
Used to set the location for backup files created by the BRIEF programmer's editor.
SET BBACKUP
Changi
The following SET statements are used by the News server Changi.
SET ChangiAutoFlush=value SET ChangiHistory=<path> SET ChangiHostName=value SET ChangiLocalHost=value SET ChangiNewsDir=Path SET ChangiNodeName=value SET ChangiOverDir=Path SET ChangiPathHost=value SET ChangiWorkDir=<path> - Working directory
Communigate Pro
Usually set from Communigate Pro's Startup.CMD
APPLICATION
This points to the Communigate Pro program directory.
SET APPLICATION=Path
- Parameters
- Path should be the full path to the location of CGServer.exe (without the trailing backslash).
BASEDIRECTORY
This points to the Communigate Pro data directory.
SET BASEDIRECTORY=Path
- Parameters
- Path should be the full path to the parent directory containing Accounts, Domains, BadFiles, Queue, Settings, etc. (without the trailing backslash).
SUPPLPARAMS
This includes one or more parameters to be passed to CGServer.exe at startup.
SET SUPPLPARAMS=--<parameter 1> <option> --<parameter 2> <option> etc.
- Parameters
- Parameters should be preceded by double dashes (i.e., entered just as they would be on the command line). Where a parameter requires an option, use a white-space to separate the parameter from the option. If multiple parameters are required, separate them with a whitespace and precede the next parameter with double dashes.
DCF/2
These are the environment variables used by the DCF/2 disk compression program.
- DCF2_Acp_Auto_Optimize_Kb_Free
SET Dcf2_Acp_Auto_Optimize_Kb_Free=1024
- DCF2_Acp_Auto_Optimize_Level
SET Dcf2_Acp_Auto_Optimize_Level=0
- DCF2_Acp_Auto_Optimize_Mins
SET Dcf2_Acp_Auto_Optimize_Mins=60
- DCF2_Acp_Cache_Blocks
SET DCF2_Acp_Cache_Blocks=128
- DCF2_Acp_Compression_Level
SET Dcf2_Acp_Compression_Level=2
- DCF2_Acp_Debug
SET Dcf2_Acp_Debug=3
- DCF2_Acp_Foreground_Compress_Rate
SET Dcf2_Acp_Foreground_Compress_Rate=5
- DCF2_Acp_Logng
SET Dcf2_Acp_Logng=3
- DCF2_Acp_Maxage_Secs
SET Dcf2_Acp_Maxage_Secs=5
- DCF2_Acp_No_Clean_And_Close
SET Dcf2_Acp_No_Clean_And_Close=TRUE
- DCF2_Acp_Out_Of_Space_Suspend
SET Dcf2_Acp_Out_Of_Space_Suspend=512
- DCF2_Acp_Out_Of_Space_Warning
SET Dcf2_Acp_Out_Of_Space_Warning=3072
- DCF2_Acp_Priority
SET Dcf2_Acp_Priority=2
- DCF2_Acp_Priority_Delta
SET Dcf2_Acp_Priority_Delta=2
- DCF2_Pdd_Wait
SET Dcf2_Acp_Pdd_Wait=0
- DCF2_Vdu_G
SET Dcf2_Vdu_G=file
EMX Environment
- AC_PREFIX
- Sets the install directory for GNU autoconf.
SET AC_PREFIX=
- ADA_INCLUDE_PATH
- Include path for GNAT the Ada95 Compiler from GNU GCC
SET ADA_INCLUDE_PATH=
- ADA_OBJECTS_PATH
- Object path for GNAT the Ada95 Compiler for GCC
SET ADA_OBJECTS_PATH=
- C_Include_Path
- Points to the path where the EMX gcc C compiler searches for include files.
SET C_Include_Path=Path
- Parameters: Path can be any full path. If you have several path they must be delimited by a semicolon.
- Note: You must use the UNIX-like forward slashes instead of the backslashes. See the example below:
SET C_Include_Path=c:/emx/include
- CPLUS_INCLUDE_PATH
- EMXBOOK
- EMXOPT
- EMXTZ - Timezone
- GCCLOAD
- GCCOPT
- INFOPATH - Info files stored.
- LIBRARY_PATH - EMX library path
- MANPATH
- OBJC_INCLUDE_PATH - Objective C
- PROTODIR
- TMPDIR - Directory for temporary files
Gpf
GPFREXX
Points to the directory where GPFRexx is installed.
SET GPFREXX=C:\Gpfrexx
GPFREXXBITMAP
Points to the directory where GPFRexx stores the bitmap files.
SET GPFREXXBITMAP=C:\Gpfrexx\Bitmap
Graham Utilities
GU
The GU variable sets up the path where the Graham Utilities are installed.
SET GU=C:\user\GU20
HomePage Publisher
HPP_Base
Points to the directory in which the Homepage Publisher is installed.
SET Hpp_base=C:\Hpp21
HPP_Options
Used by the Home Page Publisher to define a default background image for new html files.
SET Hpp_Options=C:\Hpp21\Images\Background.jpg
Inet.Mail
This is used by the POP3 and SMTP Mail server Inet.Mail.
AutoReply
SET AutoReply=<path>
- Parameters
- Path can be any full path.
STEWARD_CF
SET STEWARD_CF=<path>
- Parameters
- Path can be any full path.
- Value can be any full path. Relative paths are not allowed.
LIBC Library
LIBCX_HIGHMEM
Undocumented
SET LIBCX_HIGHMEM=<parameter>
- Parameters
- 2
- It is used for VirtualBox 5.0. to run.
SET LIBC_UNIX_EAS
Controls where EAs are used.
SET LIBC_UNIX_EAS=<parameter>
- Parameters
- Drive letters to include or !exclude
- The ! indicates drives which should not use EAs, while the ones without ! shall have. Drives that are not mentioned will be auto detected.
- Example
- Disable all drives except the N: drive:
SET LIBC_UNIX_EAS=!C-M,N,!O-Z
- Notes
- You can use individual letters or create ranges; use '!' to negate a letter or range.
- Note 1: These EAs must be allowed on your boot drive (or maybe it's just your %UNIXROOT% drive) or "bad things will happen".
Lucide Document Viewer
LUCIDEINSTALLPATH
Used to point to the location of the Lucide executable, help, and supporting files. This was introduced in Lucide version 1.4.0. It is normally set during install.
SET LUCIDEINSTALLPATH=Path
- Parameters
- Path can be any full path.
Mozilla
These are the SET Statements for Mozilla applications.
MOZ_PLUGIN_PATH
This statement is to separate the locations of the plugins.
SET MOZ_PLUGIN_PATH=<path>
MOZILLA_HOME
This statement is to separate the locations of the user profiles.
SET MOZILLA_HOME=<path>
- Parameters
- Full path of the location of the profile.
MOZ_NO_REMOTE
Allows to run more instances of Mozilla applications simultaneously.
SET MOZ_NO_REMOTE=1
MOZILLA_USE_EXTENDED_FT2LIB
Enables special functions to use the Freetype/2 library, if you have Innotek Font Engine installed.
SET MOZILLA_USE_EXTENDED_FT2LIB=T
Object Desktop
This are the SET statements used in the Stardock Object Desktop application.
OBJD_ALLVISIBLE
Allows all invisible objects to be in Control Center browser objects.
SET OBJD_ALLVISIBLE=1
OBJD_AUTOTILENAV
Enables the Norton Commander look in the Object Navigator window.
SET OBJD_AUTOTILENAV=1
OBJD_DISABLEFASTMOVE
With this option enabled, the Control Center will switch between virtual desktops with a slow and safe method, this prevents Traps which may occour with Warp3 FP16-FP18.
SET OBJD_DISABLEFASTMOVE=1
OBJD_LOG
When this is set up, trap logs are automatically written to the objdtrap.log file, whenever an error occurs.
SET OBJD_LOG=Auto
OBJD_NODISKASFOLDERS
Allows all WPDisk objects in Control Center browser object to be treated as Object Desktop 1.0 disk objects.
SET OBJD_NODISKASFOLDERS=1
OBJD_NOF12ROLLUP
Disables ALT-F12 roll-up accelerator.
SET OBJD_NOF12ROLLUP=1
OBJD_ONAVFULLMENUS
With this option set, the Object Navigator will show copy, move... in its context menu.
SET OBJD_ONAVFULLMENUS=1
OBJD_URLNOOPEN
Disables URL open processing for Stardock Internet Shell Objects.
SET OBJD_URLNOOPEN=1
OBJD_URLNOPAINT
Disables URL underline painting for Stardock Internet Shell Objects.
SET OBJD_URLNOPAINT=1
OnCmd
ONCMD_DIR
This is points to the path where the Database OnCmd is installed.
SET ONCMD_DIR=<path>
- Parameters
- Path can be any full path.
PDE
This is used by PDE (Polumuh Desktop Environment), an alternative GUI user shell for OS/2, eCS and ArcaOS.
SET PDE_HOME
Defines the path where PDE is installed.
SET PDE_HOME=<path>
- Parameters
- Value can be any full path. Relative paths are not allowed.
PMAs
This is used by the astronomy program PMAS.
PMAS_INI
Defines the Path where PMAS stores its config files.
SET PMAS_INI=<path>
- Parameters
- Value can be any full path. Relative paths are not allowed.
PMAS_Lang
It defines which language the program uses.
SET Pmas_Lang=value
- Parameters
- Value can be EN or DE.
PMAS_Nls
SET Pmas_Nls=Path
- Parameters
- Value can be any full path. Relative paths are not allowed.
PMASkom_Data
SET Pmaskom_Data=file
- Parameters
- Value can be any full path. Relative paths are not allowed.
PMASmipl_Data
SET Pmasmipl_Data=file
- Parameters
- Value can be any full path. Relative paths are not allowed.
PMASpla_Dll
SET Pmaspla_Dll=value
- Parameters
- Value can be any full path. Relative paths are not allowed.
PMASgraf_Gap
SET Pmasgraf_Gap=Path
- Parameters
- Value can be any full path. Relative paths are not allowed.
PMASgraf_Gb
SET Pmasgraf_Gb=Path
- Parameters
- Value can be any full path. If you have several paths they must be delimited by a semicolon. Relative paths are not allowed.
MASD118_DATA
SET MASD118_DATA=<path>
- Parameters
- Value can be any full path. Relative paths are not allowed.
Qt
SANE
SANE_CONFIG_DIR
Describes the configuration directory path for the SANE program. Points to the installation directory of the OS/2 SANE driver (*.conf). Regard the use of slashes (/).
SET SANE_CONFIG_DIR=<path>
- Example
SET SANE_CONFIG_DIR=C:\PROGRAMS\TAME\conf
SDD
These are the Set Statements used by the Scitech Software Display Doctor for OS/2.
- SDDFONTDPI - SDD Font DPI size.
- SDDFONTSIZE - SDD Font size option.
SDDHRES
This variable is used by the Scitech Software Display Doctor for OS/2. The Display Doctor is a universal driver for almost every graphiccard and currently in BETA test. Here can you set up the horizontally Pels Per Meter (PPM), this is used to determine scaling between pixels and millimeter on the screen.
SET SDDHRES=<value>
Parameters:
Value can be pels per meter. If this variable is not set the SDD will compute the best value of this setting for you. Usually it is not needed to set this variable.
Value can be any full path. Relative paths are not allowed.
SDDICONS
This variable is used by the Scitech Software Display Doctor for OS/2. The Display Doctor is a universal driver for almost every graphiccard. With this environment variable can you change the Icon size on the desktop.
SET SDDICONS=<value>
Parameters:
Value can be small or large. Small icons are 32x32 pixels and large icons are 40x40 pixels. If this variable is not set the default small icons are used.
Value can be any full path. Relative paths are not allowed.
SDDVRES
This variable is used by the Scitech Software Display Doctor for OS/2. The Display Doctor is a universal driver. Here can you set up the vertically Pels Per Meter (PPM), this is used to determine scaling between pixels and millimeter on the screen.
SET SDDVRES=<value>
Parameters:
Value can be pels per meter. If this variable is not set the SDD will compute the best value of this setting for you. Usually it is not needed to set this variable.
Value can be any full path. Relative paths are not allowed.
Speedsoft Sibyl
SIBYL_REG
This line is used by the Speedsoft Sibyl Pascal compiler to store the registration key.
SET SIBYL_REG=<path>
- Parameters
- Value can be any full path. Relative paths are not allowed.
Spellguard
This are the SET statements for Spellguard (used in Pronews and other applications).
SG_DICT_PATH
Defines a directory in which ProNews search for the Spellguard dictionary.
SET SG_DICT_PATH=C:\Pronews\Spell
Value can be any full path. Relative paths are not allowed.
SG_USER_PATH
Defines a directory in which Pronews search for the Spellguard user-dictionary.
SET SG_USER_PATH=C:\Pronews\Spell
Value can be any full path. Relative paths are not allowed.
VisPro
VISPROC
Used by VisPro/C. Points to the directory where VisPro/C is installed.
SET VISPROC=<path>
- Parameters
- Path can be any full path. Relative paths are not allowed.
VISPRORX
Used by VisPro/REXX. Points to the directory where VisPro/REXX is installed.
SET VISPRORX=<path>
- Parameters
- Path can be any full path. Relative paths are not allowed.
Virtual Pascal
Used by Virtual Pascal.
VPBASE
Points to the directory where Virtual Pascal is installed.
SET VPBASE=<path>
- Parameters
- Path can be any full path. Relative paths are not allowed.
VPHELP
Defines the directory where the Virtual Pascal help files are stored.
SET VPHELP=<path>
- Parameters
- Path can be any full path. Relative paths are not allowed.
VPLIB
Points to the Virtual Pascal Library files.
SET VPLIB=<path>
- Parameters
- Path can be any full path. Relative paths are not allowed.
VPOUT
Defines the directory where the compiled projects should be written to.
SET VPOUTt=<path>
- Parameters
- Path can be any full path. Relative paths are not allowed.
Watcom
EDPATH
Is used by the Watcom C/C++ editor.
SET EDPATH=<path>
- Parameters
- Path can be any full path.
VXREXX
Used by Watcom VX-REXX. Points to the directory where VX-Rexx is installed.
SET VXREXX=<path>
- Parameters
- Path can be any full path. Relative paths are not allowed.
WATCOM
This line is used by the Watcom C/C++ and FORTRAN 77 and defines the directory where it is installed.
SET WATCOM=<path>
- Parameters
- Path can be any full path. Relative paths are not allowed.
XFree86/2
DISPLAY
Needed by XFree86/OS2. Tells the X server were to display the output.
Normally this should be your own monitor, but it is possible to use an other computer for the output.
SET DISPLAY=HOSTNAME:DISPLAYNUMBER.SCREENNUMBER
- Parameters
- Hostname - The Hostname is the name or IP address of the computer for the display. If you want to use your own PC then set it to the same name as defined in the HOSTNAME variable.
- displaynumber - Use 0 for the first local display.
- screennumber - Use 0 for the first local screen.
X11ROOT
Needed by XFree86/OS2. Points to the directory in which the \XFree86 directory is installed.
SET X11ROOT=E:
If you have installed XFree86/OS2 in the directory "D:\usr" then set up X11Root to "D:/usr"
- Note
- You must use a Unix like forward-slash as a directory separator!
- Value can be any full path. Relative paths are not allowed.
X11SHELL
Needed by XFree86/2. Defines the shell to be used within XFree86/2, if you want to use the standard CMD.EXE this line is not necessary.
SET X11SHELL=X:/BIN/KSH.EXE
Value can be any full path. Relative paths are not allowed.
XSERVER
Needed by XFree86/OS2. Defines the X server to be used. You must choose the right server for your graphics adapter card.
SET XSERVER=X:/XFREE86/BIN/XF86_SVGA.EXE
- Parameters
- Possible X Servers are:
- XF86_MONO.EXE
- XF86_SVGA.EXE
- XF86_VG16.EXE
- XF86_8514.EXE
- XF86_AGX.EXE
- XF86_GLNT.EXE
- XF86_I128.EXE
- XF86_MA8.EXE
- XF86_MA32.EXE
- XF86_MA64.EXE
- XF86_P9K.EXE
- XF86_S3.EXE
- XF86_S3V.EXE
- XF86_W32.EXE
- Note
- You must use a Unix like forward-slash as a directory separator!
XTEL
This parameters was found on XTEL software configurations (version 5.6 (MINI X-TEL) and 6.0). This software is for PLC usage.
SET XPROSYS=X:\XPROSYS SET XPROHELP=X:\XPROSYS\HLP SET QH=X:\XPROSYS\HLP SET XPROUSR=X:\XPROSYS SET XPROMOD=X:\XPROSYS IOPL=YES