Jump to content

CONFIG.SYS - SET Statements: Difference between revisions

From EDM2
Aasdelat (talk | contribs)
No edit summary
Ak120 (talk | contribs)
 
(298 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[The Config.sys Documentation Project|Return to The Config.sys Documentation Project Main Page]]
{{CFGProject}}
Environment variables are stored by OS/2 in memory and can be called by any program. They are used by many programs to store information (for example, the install path) or some configuration information. If you want to see a list of all installed environment variables and their values, type "Set" in an OS/2 window. If the list is too long, you can redirect the screen output to a file, simply type this:
SET >output.txt


Environment variables are stored by OS/2 in memory and can be called by any program. They are used by many programs to store information (for example, the install path) or some configuration information. If you want to see a list of all installed environment variables and their values, type "Set" in an OS/2 window. If the list is too long, you can redirect the screen output to a file, simply type this "Set >output.txt".
==General Tips==
Note that SET commands in CONFIG.SYS behave differently than when entered on the command line.


So, when you issue the following commands in a OS/2 session:
SET TEMP=C:\TMP
SET TMP=%TEMP%
you get:
TEMP=C:\TMP
TMP=C:\TMP
But, if you add the same lines to CONFIG.SYS:
SET TEMP=C:\TMP
SET TMP=%TEMP%
you get:
TEMP=C:\TMP
TMP=%TEMP%
but not TMP=C:\TMP. The environment variable TMP now has the value composed by the letters "%", "T", "E", "M", "P", "%". For that reason, in CONFIG.SYS, you must write the values explicitly as follows:
SET TEMP=C:\TMP
SET TMP=C:\TMP
This is because variables are not expanded during CONFIG.SYS processing, but they are when run from a shell (command line).


==Base Operating System==
*[[COMSPEC]]
*[[C1]]
*[[DELDIR]] - undelete directory
*[[DESKTOP]]
*[[DIRCMD]] - dir command options
*[[DISPLAYTYPE]]
*[[DPATH (Environment variable)|DPATH]] - search path for data files
*[[ENH_STRETCH]] - enhanced stretch-blitting
*[[ENH_SUSPEND]] - enhanced suspend option
*[[GRADD_CHAINS]]
*[[GREEXT]]
*[[KEYS]] - command line history
*[[LANG]] - country-specific settings
*[[OBJECTSNOOZETIME]]
*[[OS2_SHELL]] - command line shell
*[[PATH]] - search path for executable files
*[[PROMPT (Environment variable)|PROMPT]] - OS/2 session prompt appearance.
*[[RUNWORKPLACE]]
*[[ULSPATH]]
*[[VIDEO_DEVICES]]
*[[VIO_MGA]]
*[[VIO_SVGA]]


== General Tips ==
===PM===
*[[BACKGROUNDBITMAP]]
*[[BACKGROUNDBITMAP2]]
*[[BACKGROUNDBITMAPDELAY]]
*[[BACKGROUNDBITMAPDELAY2]]
*[[DEVICEFONTDISABLED]]
*[[HARDWAREBITBLT]]
*[[NCDEBUG]]
*[[PM_ASYNC_FOCUS_CHANGE]]
*[[PM_DYNAMIC_DRAG]]
*[[PM_ROLLUP_BUTTON]]
*[[QUEUE_SIZE_THRESHOLD]]
*[[SYSTEM_INI]] - Tells the system the path and name of the System INI file.
*[[USER_INI]]
*[[VCFG_NO_DDC]] - GRADD DDC


You must note that the SET command in Config.sys behaves slightly different from it's behaviour in command line.
===Help Manager===
*[[BOOKSHELF]] - help manager search path for book shelves
*[[GLOSSARY]]
*[[HELP (Environment variable)|HELP]]
*[[HELPNDX]] - Help index


So, when you issue the following comands in a OS/2 session:
===Workplace Shell===
*[[AUTOREFRESHFOLDERS]] - automatic refresh of folders
*[[AUTOSTART]] - autostart of objects
*[[MENUSTYLE]] - context menu entries
*[[NEWNOTEBOOKS]]
*[[NOLARGENTEXEICON]]
*[[RESTARTOBJECTS]]
*[[SHAPIEXCEPTIONHANDLER]]
*[[SHELLEXCEPTIONHANDLER]] - Disable the WPS exception handler.
*[[SHELLHANDLESINC]] - Increases the number of file handles.
*[[SHOWEXTENDEDPOWERMENU]] - Intel SpeedStep
*SOMDDIR
*[[SOMIR]]
*[[WPDSERVERSTART]]


;WarpCenter
*[[MENUSFOLLOWPOINTER]] - WarpCenter menu behaviour
*[[SCCANBENUKED]] - Allows the Warpcenter to have a delete option on its context menu.
*[[SCFINDUTILITY]] - Use a different search program in the Warpcenter.
*[[SCKILLCONFIRMDISABLED]] - Avoid the "Are you sure ..." dialogue if using the Warpcenter kill feature.
*[[SCKILLFEATUREENABLED]] -  Enables Warpcenter window list Warpcenter Window List as an application killer.
*[[SCUSEPRETTYCLOCK]] - Change the look of the Warpcenter clock.


SET TEMP=C:\TMP
===Multimedia===
*[[DSPPATH]]
*[[MMBASE]]
*[[MMSTREAM]]
*[[MMTYPESEXTS]]
*[[MMVWRLOG]]
*[[MMWPSLOG]]
*[[MMYIELD]]


SET TMP=%TEMP%
===Installation===
*[[CDROMINST]]
*[[COPYFROMFLOPPY]]
*[[SAVECONNECT]]
*[[SOURCEPATH]]


==Layered Products==
===Programming Environments===
;Toolkit
*[[CPREF]] - Control Program Reference
*[[GPIREF]] - GPI Reference
*[[INCLUDE]] - Include directory
*[[IPF_KEYS]] - IPF key definitions
*[[IPFC]] - IPF compiler
*[[LIB]] - Points to directories where lib files are stored.
*[[MMREF]] - Defines which files should be shown in the Multimedia Programming Reference.
*[[PMREF]] - Presentation Manager Reference
*[[WPSREF]] - Workplace Shell Reference


you get:
;SOM
*[[SMADDSTAR]]
*[[SMCLASSES]]
*[[SMEMIT]]
*[[SMINCLUDE]] - Defines the directories where the special SOM header files are stored.
*[[SMNOTC]]
*[[SMTMP]] - Points to a directory used to store temporary files.


;SOMobjects
*[[AVLSVRNAME]]
*[[SOMBASE]]
*[[SOMDDEBUG]]
*[[SOMDIR]]
*[[SOMDMESSAGELOG]]
*[[SOMDPORT]]
*[[SOMDTIMEOUT]]
*[[SOMRUNTIME]]
*[[SOMSOCKETS]]
*[[SOMTHREADPEER]]


TEMP=C:\TMP
;Java Run-time
*[[CLASSPATH]] - Java run-time classpath
*[[SWING_HOME]] - Swing run-time


TMP=C:\TMP
===Networking===
;LAPS
*[[ADAPTER_NIF]]
*[[ETC]]


;LAN Services
*[[DLSINI]]
*[[INIT_FILE_NAMES]]
*[[INIT_FILE_RANGES]]
*[[LANINSTEP]]
*[[LOCPATH]] - Points to the location of the language files.
*[[NWDBPATH]]
*[[WPS_COMMUNICATION]]


But, if you add the same lines to config.sys:
;TCP/IP
*[[HOME]]
*[[HOSTNAME]]
*[[I18NDIR]]
*[[NLSPATH]]
*[[NSPR_OS2_NO_HIRES_TIMER]]
*[[TCPLANG]] - Sets the language for TCP/IP V4.x.
*[[TELNET.PASSWORD.ID]] - Sets a password for the telnet daemon (Telnetd).
*[[TZ]] - Timezone information.
*[[USE_HOSTS_FIRST]] - resolver


;MFS
*[[MFSCACHE]] - mobile file sync


SET TEMP=C:\TMP
;Global Security Runtime
*[[IKEYMAN_HOME]]
*[[IKEYMAN40_HOME]]
*[[IKEYMAN50_HOME]]


SET TMP=%TEMP%
*[[LOGNAME]]
*[[MGA]] - Matrox graphic cards directory


*[[NETVIEW_PATH]] - Defines the path where the SystemView client is installed.


you get:
*[[SRVNAME1]] - Used for remote installations of OS/2.


*[[TEMP]] - Define a directory were OS/2 and programs can store temporarily files.
*[[TMP]] - Define a directory were OS/2 and programs can store temporarily files.


TEMP=C:\TMP


TMP=%TEMP%
Check also [[CONFIG.SYS - SET Statements (Additional software)]].


 
[[Category: The Config.sys Documentation Project]]
but not TMP=C:\TMP. The enviroment variable TMP now has the value composed by the letters "%", "T", "E", "M", "P", "%". For that reason, in Config.sys, you must write the values explicitly as follows:
 
 
SET TEMP=C:\TMP
SET TMP=C:\TMP
 
 
=SET=AC_PREFIX=
Sets the installdirectory for GNU autconf.
 
'''Platform Support:'''
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
SET ADA_INCLUDE_PATH
[Table of contents] [Index] [SET STATEMENTS]
 
Variable for GNAT the Ada95 Compiler for gcc
 
SET ADA_OBJECTS_PATH
[Table of contents] [Index] [SET STATEMENTS]
 
Variable for GNAT the Ada95 Compiler for gcc
 
 
=SET Adapter_Nif=
This Statement is part of the Lan Adapter and Protocol Support (LAPS)
 
and points out the network information file (NIF) for the installed
 
LAN card.
 
  SET Adapter_Nif=value
 
Parameters:
 
Value can be any NIF file . The NIF file must be located in the
 
C:\IBMCOM\MACS directory.
 
'''Platform Support:'''
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
 
SET AINCODEPATH
[Table of contents] [Index] [SET STATEMENTS]
 
Setting by IBM Print Services Facility for OS/2.
 
SET AINLANGUAGE
[Table of contents] [Index] [SET STATEMENTS]
 
=ENU
 
Setting by IBM Print Services Facility for OS/2.
 
SET AINUPTIMER
[Table of contents] [Index] [SET STATEMENTS]
 
=1
 
Setting by IBM Print Services Facility for OS/2.
 
SET AINWORKPATH
[Table of contents] [Index] [SET STATEMENTS]
 
Setting by IBM Print Services Facility for OS/2.
 
SET AMD_LISTS_PATH
[Table of contents] [Index] [SET STATEMENTS]
 
Setting for a database_application. It is an 'os2-browser' for IMDB (internet movie database!) , a very wellknown project for movie enthusiasts. Developed by Steffen Siebert (siebert@logware.de) and available for FREE
 
SET AMD_PATH
[Table of contents] [Index] [SET STATEMENTS]
 
Setting for a database_application. It is an 'os2-browser' for IMDB (internet movie database!) , a very wellknown project for movie enthusiasts. Developed by Steffen Siebert (siebert@logware.de) and available for FREE
 
SET APPLICATION
[Table of contents] [Index] [SET STATEMENTS]
 
Setting by ComminiGate Pro
 
SET AUTOFAIL
[Table of contents] [Index] [SET STATEMENTS]
 
=YES
 
forces computer to deliver system error to the application direct.
 
=SET AutoRefreshFolders=
 
The AUTOREFRESHFOLDERS variable disables the automatic refresh of
 
folders.
 
  SET AUTOREFRESHFOLDERS=value
 
Default settings:
 
* SET AUTOREFRESHFOLDERS=YES
 
Parameters:
 
Value can be YES or NO .
 
* SET AUTOREFRESHFOLDERS=YES
The automatic refresh of folders is enabled.
 
* SET AUTOREFRESHFOLDERS=NO
The automatic refresh of folders is disabled.
 
If this parameter is not set it defaults to YES .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET AutoReply=
This is used by the POP3 and SMTP Mailserver Inet.Mail.
 
  SET AutoReply=Path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Autostart=
The AUTOSTART variable defines which programs and objects should be
 
started on boot up.
 
  SET AUTOSTART=parameters
 
Parameters:
 
All parameters must be delimited by commas.
 
* Programs
Enables starting or restarting of programs at boot up.
 
* Folders
Enables opening of folders at boot up.
 
* Tasklist
Enables the tasklist, without this item you can not open the
 
tasklist.
In Warp 3.0 prior to Fixpack 17 has the item no effect.
 
* Connections
Restarts network connections.
 
* Launchpad
Starts the Launchpad at boot up.
 
* Warpcenter
Starts the Warpcenter at boot up. This parameter is only available in
 
Warp 4.0.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
SET AVLSVRNAME
[Table of contents] [Index] [SET STATEMENTS]
 
=AS
 
statement to support network Dsom
 
SET AWK
[Table of contents] [Index] [SET STATEMENTS]
 
Sets the path to the AWK executable
 
regard the use of slashes (/)
 
SET AWKPATH
[Table of contents] [Index] [SET STATEMENTS]
 
Sets the searchpath for AWK
 
regard the use of slashes (/)
 
SET BA2_CATALOG_PATH
[Table of contents] [Index] [SET STATEMENTS]
 
Environment variable used by Back Again/2
 
SET BA2_LOG_PATH
[Table of contents] [Index] [SET STATEMENTS]
 
Environment variable used by Back Again/2
 
SET BA2_SCSI_LOGFILE
[Table of contents] [Index] [SET STATEMENTS]
 
=drive:\SCSILOG.TXT
 
This will create with BackAgain/2 a logfile of scsi-related messages. Good for testing errors.
 
SET BA2_SET_PATH
[Table of contents] [Index] [SET STATEMENTS]
 
Environment variable used by Back Again/2
 
SET BACKGROUNDBITMAP
[Table of contents] [Index] [SET STATEMENTS]
 
="bitmap.BMP"
 
On security-enabled servers, the Presentation Manager lockup/autodim function is disabled. To restore the autodim function to guard against
display phosphor burn-in, you can specify a sequence of up to 100 bitmaps to be displayed.
 
If no file is specified, a default OS/2 logo bitmap is used.
 
If the file name is in the form bitmapNN, where NN represents digits 00-99, the file name specifies that it is the first of a sequence of files
to be displayed cyclically.
 
SET BACKGROUNDBITMAP2
[Table of contents] [Index] [SET STATEMENTS]
 
="bitmap.BMP"
 
On security-enabled servers, the Presentation Manager lockup/autodim function is disabled. This line enables the Screen Saver function.
 
If no file is specified, a default OS/2 logo bitmap is used.
 
SET BACKGROUNDBITMAPDELAY
[Table of contents] [Index] [SET STATEMENTS]
 
=n (in sec., default 300)
 
the BACKGROUNDBITMAPDELAY value is the amount of time, in seconds, to display the BACKGROUNDBITMAP file before displaying the first bitmap in the sequence.
 
SET BACKGROUNDBITMAPDELAY2
[Table of contents] [Index] [SET STATEMENTS]
 
=n (in sec., default 60)
 
the BACKGROUNDBITMAPDELAY2 value is the amount of time, in seconds, to delay between the display of the bitmap sequence designated by BACKGROUNDBITMAP2.
 
SET BASEDIRECTORY
[Table of contents] [Index] [SET STATEMENTS]
 
Setting by ComminiGate Pro
 
SET BBACKUP
[Table of contents] [Index] [SET STATEMENTS]
 
Setting by BRIEF-editor, (os2-version); I think BRIEF is a well know
(programmers?) editor for dos-world. this is a specially os2-version! (1992)
 
 
=SET BeginLibpath=
With this variable can you enhance the Libpath . All paths you define in the Beginlibpath variable are added in front of the Libpath entries. It is normally not used in the Config.sys file, it is usefull at the command line and in scripts.
 
  SET BeginLibpath=path;path2
 
'''Parameters:'''
If you have several paths they must be delimited by a semicolon.
 
'''Platform Support:'''
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Bookshelf=
This variable points to the OS/2 online documentation and documents
 
from various programs. Only the paths listed in the BOOKSHELF
 
variable are searched, if you select "search in all books".
 
  SET BOOKSHELF=Path1;Path2;...;PathN
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET C1=
This variable is used by some Gradd based Video Card Driver. Gradd
 
drivers can only be used on Warp with a resent fixpack level.
 
  SET C1=Parameter
 
Parameter:
 
Parameter is one or more Dlls that the Gradd driver should load. If
 
you have severall Dlls they must be delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET CPlus_Include_Path=
Points to the path where the EMX-C++ Compiler stores the Include
 
files.
 
  SET CPlus_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 CPlus_Include_Path=c:/emx/include/cpp;c:/emx/include
 
 
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET CAT=
Set Statements used by the ICAT debugger.
 
==SET CAT_Communication_Type==
Is used by the ICAT debugger.
 
  SET Cat_Communication_Type=value
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CAT_Host_Bin_Path==
Is used by the ICAT debugger. 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CAT_Host_Source_Path==
Is used by the ICAT debugger. 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CAT_JAVA_ONLY==
Is used by the ICAT debugger. 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CAT_JVM_ARGS==
Is used by the ICAT debugger.
 
  SET CAT_JVM_ARGS=parameters
 
Parameters:
 
Parameters can be any valid option for the JVM .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CAT_Machine==
 
Is used by the ICAT debugger. 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 .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CAT_MODULE_LIST==
Is used by the ICAT debugger.
 
  SET Cat_Module_List=value
 
Parameters:
 
Value can be any class file . If you have several files they must be delimited by a space.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CAT_Package_Path==
Is used by the ICAT debugger.
 
  SET Cat_Package_Path=
 
Parameters:
 
Path can be any full path . If you have several path they must be =delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CAT_PATH_RECURSE==
Is used by the ICAT debugger. 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET C_Include_Path=
Points to the path where the EMX-C Compiler stores the 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 forwardslashes instead of the
 
backslashes. See the example below: SET C_Include_Path=c:/emx/include
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Classpath=
The CLASSPATH variable points to the Java class files.
 
  SET CLASSPATH=Classfile1;Classfile2;Classfile3;
 
Parameters:
 
Classfile can be any Java class file with full path , any relative
 
path , or any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Changi...=
The following Set Statements are used by the Newsserver Changi.
 
==SET ChangiAutoFlush==
This is used by the Newsserver Changi.
 
  SET ChangiAutoFlush=value
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ChangiHistory==
This is used by the Newsserver Changi.
 
  SET ChangiHistory=Path
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ChangiHostName==
This is used by the Newsserver Changi.
 
  SET ChangiHostName=value
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ChangiLocalHost==
This is used by the Newsserver Changi.
 
  SET ChangiLocalHost=value
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ChangiNewsDir==
This is used by the Newsserver Changi.
 
  SET ChangiNewsDir=Path
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ChangiNodeName==
This is used by the Newsserver Changi.
 
  SET ChangiNodeName=value
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ChangiOverDir==
This is used by the Newsserver Changi.
 
  SET ChangiOverDir=Path
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ChangiPathHost==
This is used by the Newsserver Changi.
 
  SET ChangiPathHost=value
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ChangiWorkDir==
This is used by the Newsserver Changi.
 
  SET ChangiWorkDir=Path
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET CodeLPath=
Is used by the IBM Visualage for C++ Compiler.
 
  SET CodeLPath=path
 
Parameters:
 
Path can be any full path . If you have several path they must be
 
delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Comspec=
The COMSPEC variable defines a reload path for the command processor.
 
  SET COMSPEC=path
 
Parameters:
 
Path can be a full path to an OS/2 command processor .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET CopyFromFloppy=
This environment variable is only useful in your install diskettes config.sys file. If you find it in your normal config.sys file, than you can delete it. If it is set up, Os/2 copy all standard drivers from the diskettes to your harddisk during the install process. If it is not set up, OS/2 copy all drivers from the CD-Rom. If your hardware needs newer drivers than that on the install CD-Rom, you can copy the new drivers to the install diskettes. And set in the config.sys on the install diskettes the CopyfromFloppy variable to "On".
 
  SET CopyFromFloppy=Value
 
Parameters:
 
Value can be On or 1 .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Cpp..=
The following Set Statements are used in IBM Visualage for C++ Compiler.
 
==SET CppHelp_Ini==
Is used by the IBM Visualage for C++ Compiler.
 
  SET CppHelp_Ini=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CppLocal==
Is used by the IBM Visualage for C++ Compiler.
 
  SET CppLocal=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET CppMain==
Is used by the IBM Visualage for C++ Compiler.
 
  SET CppMain=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
==SET CppWork==
Is used by the IBM Visualage for C++ Compiler.
 
  SET CppWork=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET CpRef=
Used by the IBM OS/2 Programmer Toolkit. Defines which books should
 
be shown in the Control Program Guide and Reference.
 
  SET Cpref=Cp1.inf+cp2.inf+cp3.inf
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET DCF2=
These are the environment variables used by the DCF/2 disk
 
compression program.
 
==SET DCF2_Acp_Auto_Optimize_Kb_Free==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Auto_Optimize_Kb_Free=1024
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Auto_Optimize_Level==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Auto_Optimize_Level=0
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Auto_Optimize_Mins==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Auto_Optimize_Mins=60
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Cache_Blocks==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET DCF2_Acp_Cache_Blocks=128
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Compression_Level==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Compression_Level=2
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Debug==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Debug=3
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Foreground_Compress_Rate==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Foreground_Compress_Rate=5
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Logng==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Logng=3
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Maxage_Secs==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Maxage_Secs=5
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_No_Clean_And_Close==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_No_Clean_And_Close=TRUE
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Out_Of_Space_Suspend==
 
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Out_Of_Space_Suspend=512
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Out_Of_Space_Warning==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Out_Of_Space_Warning=3072
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
==SET DCF2_Acp_Priority==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Priority=2
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Acp_Priority_Delta==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Priority_Delta=2
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET DCF2_Pdd_Wait==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Acp_Pdd_Wait=0
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
==SET DCF2_Vdu_G==
This environment variable is used by the DCF/2 disk compression
 
program.
 
  SET Dcf2_Vdu_G=file
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET DelDir=
 
This enables the OS/2 undelete function. If this line is set up all
 
files you delete are not really deleted but instead are moved to a
 
directory specified by the DELDIR variable.
If the total size of files in the delete directory is greater than
 
the delete directory size the oldest files are deleted from the
 
delete directory until the total size of files is smaller than the
 
directory size. You must enable the delete directory function for
 
every partition that you want to be able to recover files from.
 
  SET DELDIR=Path1,Size1;Path2,Size2
 
Parameters:
 
* Path
Path must be a full path to an existing directory.
 
* Size
Size can be any value expressed in Kbytes.
 
See the examples below.
 
To use 4 megabytes of space for the undelete function on partition C:
 
and 10 megabytes for the undelete function on partition E:, add this
 
line to your config.sys file:
  SET DELDIR=C:\DELETE,4096;E:\SYSTEM\DELETE,10240
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Desktop=
If OS/2 has problems to find the Desktop, you can define here the
 
path to the desktop.
 
  SET Desktop=path
 
Parameter:
 
Path must be the full path to the desktop for example:
  SET Sourcepath=C:\Desktop.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET DirCmd=
DIRCMD specifies a default parameter used by the Dir command in the
 
OS/2 shell.
 
  SET DIRCMD=parameters
 
Parameters:
 
* /A[AHRS]
Shows only files with the specific attribute. Add a minus sign
 
(minus) in front of the letter to show files WITHOUT the specific
 
attribute. You can use any combination of the attributes. The /A
 
parameter alone calls for display of all attributes. For example you
 
want to display only files with the archive and read only attribute
 
set, then use this parameter /AAR.
 
          o A
            Archive attribute
          o H
            Hidden attribute
          o R
            Read only attribute
          o S
            System attribute
 
* /B
Don't show the heading and summary information.
 
* /F
Show files with full path but without date, time and size.
 
* /L
Displays all information in lowercase.
 
* /N
List files on FAT drives in the same manner as on HPFS drives (i.e.
 
date, time, size, EA size, name)
 
* /O:
Displays files sorted by following criteria. You can use any logical
 
combination of sort attributes. Standard is /O:GN.
 
        o G Directories first
        o -G Directories last
        o N Sorted by filename alphabetically
        o -N Sorted by filename in reverse alphabetical order
        o E Sorted by file extension alphabetically
        o -E Sorted by file extension in reverse alphabetical order
        o D Sorted by date from oldest to newest
        o -D Sorted by date from newest to oldest
        o S Sorted by size from smallest to biggest
        o -S Sorted by size from biggest to smallest
* /P
Pauses after each full screen of information and waits for a
 
keystroke.
 
* /R
Displays long names on FAT drives if available.
 
* /S
Recursive search and displays all sub-directories.
 
* /W
Displays only file names. No other information.
 
See the example below.
 
To set the default for the Dir command to show the output sorted by
 
file name, list the directories first, and pause after each full
 
screen of display, add this line to your config.sys file:
  SET DIRCMD=/O:GN/P
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET 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 SET HostName variable.
 
* displaynumber
Use 0 if you want to use your own PC.
 
* screennumber
Use 0 if you want to use your own PC.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Dlsini=
Is used by the File and Print Client.
 
  SET CodeLPath=C:\Ibmlan\Netprog\Netgui.ini
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET DmiPath=
 
This variable is somewhere used by the Desktop Management Information
 
(DMI) system. I think this is used by tools like Syslog.exe and
 
Ffts.exe.
 
  SET Dmipath=E:\DMISL\BIN
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Dpath=
The DPATH variable sets up the search directories for data files.
 
  SET DPATH=Path1;Path2;Path3;
 
Parameters:
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET DSPPath=
If your soundcard contains a digital signal processor (DSP) then the
 
Dsppath points to the directory that contains additional files for
 
the DSP.
 
  SET Dsppath=C:\Mmos2\dsp
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Dssdir=
Is used by the Lotus Smartsuite.
 
  SET DssDir=Path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET DssPath=
Is used by the Lotus Smartsuite.
 
  SET DssPath=Path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET EDpath=
Is used by the Watcom C/C++ Compiler.
 
  SET EDPath=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET ETC=
In the Etc directory stores the OS/2 internet applications their
 
configuration and log files.
 
  SET Etc=E:\MPTN\ETC
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET EmxBook=
Is used to fit together all EMX books to one book with the name
 
EmxBook.
 
  SET EmxBook=book1+book2+bookN
 
Parameters:
 
Book can be any *.inf file .
See the example below: SET
 
EmxBook=emxdef.inf+libref.inf+gnudev.inf+bsddev.inf
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET EmxOpt=
Used by the EMX-compiler.
 
  SET EmxOpt=value
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET EndLibpath=
With this variable can you enhance the Libpath . All paths you define
 
in the Endlibpath variable are added at the end of the Libpath
 
entries. It is normally not used in the Config.sys file, it is
 
usefull at the command line and in scripts.
 
  SET EndLibpath=path1;path2
 
Parameter:
 
If you have several paths they must be delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET EpfInstDir=
This points to the directory in which the IBM installer stores
 
information about the installed programs.
 
  SET Epfinstdir=E:\OS2\Config
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET EpmPath=
The Epmpath variable tells OS/2 were to find files for the Enhanced
 
editor EPM.
 
  SET Epmpath=E:\OS2\Apps
 
Parameters:
 
If you have several paths they must be delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET GccLoad=
Defines how long the GCC Compiler is kept in memory.
 
  SET GccLoad=Minutes
 
Parameters:
 
Minutes can be any time .
This value is expressed in minutes. If this parameter is not set it
 
defaults t
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET GccOpt=
 
Defines default options for the GCC/EMX compiler.
 
  SET GccOpt=Options
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Glossary=
 
This variable points to the glossary directory. This directory
 
contains the Wpgloss.hlp file which is the general help index.
 
  SET Glossary=C:\OS2\Help\Gloss
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET GpfRexx=
Points to the directory where GPFRexx is installed.
 
  SET Gpfrexx=C:\User\Rexx\Gpfrexx
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET GpfRexxBitmap=
Points to the directory where GPFRexx stores the bitmap files.
 
  SET Gpfrexx=C:\User\Rexx\Gpfrexx\Bitmap
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET GpiRef=
 
Used by the IBM OS/2 Programmer Toolkit. Defines which books should
 
be shown in the Graphics Programming Guide and Reference.
 
  SET Gpiref=Gpi1.inf+gpi2.inf+gpi3.inf
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Grad_Chains=
This variable is somewhere used by a Gradd based Video Card Driver.
 
This variable points to another variable that defines which Dlls to
 
load. Gradd drivers can only be used on Warp with a resent fixpack
 
level.
 
  SET Grad_Chains=C1
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Greext=
Is used by the Scitech Software Display Doctor for OS/2.
 
  SET Greext=SDDGrext
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET GU=
 
The GU variable sets up the path where the Graham Utilities are
 
installed.
 
  SET GU=C:\user\GU20
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Hardwarebitblt=
 
Enables the hardware "Bit Block Transmission", it is only supported by some grafikcards and drivers.
 
  SET Hardwarebitblt=Value
 
parameters:
 
Value can be ON or OFF .
If this parameter is not set, it defaults to OFF
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET HPP_Base=
Points to the directory in which the HomePage Publisher is installed.
 
  SET Hpp_base=C:\Hpp21
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET HPP_Options=
Used by the Home Page Publisher to define a default backgroundimage for new html files.
 
  SET Hpp_Options=C:\Hpp21\Images\Background.jpg
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Help=
The HELP variable defines the search path for help files.
 
  SET HELP=Path1;Path2;Path3;
 
Parameters:
 
Value can be any full path or any relative path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Helpndx=
 
The HELPNDX variable points to the index files which are used by the EPM editor and possibly by some other programming editors. With EPM, you can mark a keyword in your text and press CTRL + H. EPM then searches the index files for the marked word and if it is found, shows the online document for the keyword. The index files must be in a path defined by the BOOKSHELF or EPMPATH variable.
 
  SET HELPNDX=FILE1.NDX+FILE2.NDX+...+FILEn.NDX
 
Parameters:
 
The HELPNDX variable contains a list of *.ndx files separated by a plus sign (+).
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET HoardPath=
This used by the Mobile File Synchronization (MFS).
 
  SET HoardPath=C:\Mfs\Bin\Hp
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET HostName=
Defines a name for your computer. You can choose any name you like. Some users reported that the program "Dial Other internet Provider" will work much better if you set up the Hostname, but I can't see any differences with or without the Hostname set up. It is needed also by XFree86/OS2.
 
  SET HostName=MyHost
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Html_DbcsNetq=
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET Html_DbcsNetq=Value
 
Parameters:
 
Value can be ON or OFF .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET I18NDir=
Points to the IBM I18N Toolkit. This is used by Nationl Language support (NLS).
 
  SET I18ndir=C:\IBMI18N
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET IBMAV=
Is used by the IBM/Symantec Antivirus program.
 
  SET IBMAV=Path
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET IBMWorks_Ini=
Here can you define the directory in that IBM Works stores the Ibmworks.ini file.
 
  SET Ibmworks_ini=E:\BonusPak\ibmworks
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
=SET Imn...=
Set Statements used by Net Question, Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
==SET ImnCcCfgFile==
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET ImnCcCfgFile=Netq.cfg
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ImnCsCfgFile==
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET ImnCsCfgFile=Netq.cfg
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ImnDataCl==
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET ImnDataCl=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ImnDataSrv==
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET ImnDataSrv=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ImnNlpsCl==
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET ImnNlpsCl=path
 
Parameters:
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ImnNlpsSrv==
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET ImnNlpsSrv=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ImnWorkCl==
 
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET ImnWorkCl=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ImnWorkSrv==
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET ImnWorkSrv=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Imq...=
Set Steatements used by the Net Question, Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
==SET ImqConfigCl==
 
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET ImqConfigCl=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ImqConfigSrv==
 
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
SET ImnConfigSrv=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Init_File_Names=
This is used by the File and Print Client.
 
  SET Init_File_Names=netgui
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Init_File_Ranges=
This is used by the File and Print Client.
 
  SET Init_File_Ranges=200
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET IPFC=
Points to the IPF Compiler path, the location of the APSY*.APS and IPF*.NLS files.
 
  SET Ipfc=C6colon.\Compiler\Ipfc4
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Include=
Used by various compilers. Defines the directries where the include files are stored.
 
  SET Include=Path1;Path2, ...
 
Parameters:
 
Path can be any full path or any relative path .
If you define more than one path, they must be delimited with a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET InfoPath=
Defines the directory where info files are stored. You need a info-browser to view info files. Info files contains documentation and they are used by some programs that are ported from Unix/Linux.
 
  SET Info=Path1;Path2, ...
 
Parameters:
 
Path can be any full path .
 
note: Paths must be defined with Unix like forward slashes.
If you define more than one path, they must be delimited with a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Ipf_Keys=
Some online documents have special sections which should be shown only to a few users, this can be done if a specific key is added to the Ipf_Keys variable. But not much online books use this feature.
 
  SET Ipf_Keys=key_1+key_2+key_n
 
Parameters:
 
Key can be any word. If you have a online book that supports this feature you can see additional information if the key is set up. If it is not set up the additional information is hide from you. The parameter can contain several keys which must be delimited by a plus signs. OS/2 assigns the Ipf_Keys variable with SBCS. I don't no were this take effect. SBCS stands for single byte character set, which is used with most languages. For languages like Yespanese or Chinese DBCS (double byte character set) are used. If you have more information please post it on this wiki.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Iwf....=
Set Statements used by the IBM Visualage for C++ Compiler.
 
==SET Iwf.Default_Prj==
This is used by the IBM Visualage for C++ Compiler.
 
  SET Iwf.Default_Prj=Cppdftprj
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Iwf.Solution_Language_Support==
This is used by the IBM Visualage for C++ Compiler.
 
  SET Iwf.Solution_Language_Support=Cppibs30;ENG
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET IwfHelp==
This is used by the IBM Visualage for C++ Compiler.
 
  SET IwfHelp=Iwfhdi.inf
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET IwfOpt==
This is used by the IBM Visualage for C++ Compiler.
 
SET IwfOpt=
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=Set Java..=
==SET 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 .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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 .
Default = 75
This value is expressed in percentage. If this parameter is not set it defaults to 75 .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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" popup 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 .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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 .
Default = 30
This value is expressed in seconds. If this parameter is not set it defaults to 30 .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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 .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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.
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Java_NoPrintDlg==
 
When you set up this, Java will dismiss the printer properties dialog 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 dialog everytime you print from a Java application.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
==SET Java_Old_Char_Spacing==
 
The character spacing in strings which use characters from different codepages 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Java_User==
 
The 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
==SET 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 .
 
=SET Keys=
 
OS/2 can remember previous keystrokes typed on the OS/2 command line. You can recall previous keystrokes with the up arrow key. This variable enables or disables this feature.
 
note:
If keys is set to ON, ANSI extended keyboard support is disabled.
 
  SET KEYS=value
 
Default settings:
 
* SET KEYS=ON
 
Parameters:
 
Value can be ON or OFF.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Lang=
Sets up the language and the country for applications that are using Unicode character sets.
 
  SET LANG=language_country
 
Parameters:
 
Here is a list of the countrys and their available settings for the language_country parameter ( the value in parenthesis ).
    * Albania (sq_AL)
    * Arabic-speaking (ar_AA)
    * Australia (en_AU)
    * Austria (de_AT)
    * Belgium dutch (nl_BE)
    * Belgium French (fr_BE)
    * Bosnia (sh_BA)
    * Brazil (pt_BR)
    * Bulgaria (bg_BG)
    * Canada english (en_CA)
    * Canada french (fr_CA)
    * China (zh_CN)
    * Croatia (hr_HR)
    * Czechoslovakia (cs_CZ)
    * Denmark (da_DK)
    * Finland (fi_FI)
    * France (fr_FR)
    * Germany (de_DE)
    * Great Britain (en_GB)
    * Greece (el_GR)
    * Hungary (hu_HU)
    * Iceland (is_IS)
    * Ireland (en_IE)
    * Israel (iw_IL)
    * Italy (it_IT)
    * Yespan (Yes_JP)
    * Korea (ko_KR)
    * Latin America (es_LA)
    * Netherlands (nl_NL)
    * New Zealand (en_NZ)
    * Norway (no_NO)
    * Poland (pl_PL)
    * Portugal (pt_PT)
    * Romania (ro_RO)
    * Russia (ru_RU)
    * Slovak (sk_SK)
    * Slovenia (sl_SL)
    * South Africa (en_ZA)
    * Spain (es_ES)
    * Sweden (sv_SE)
    * Switzerland german (de_CH)
    * Switzerland french (fr_CH)
    * Switzerland italian (it_CH)
    * Taiwan (zh_TW)
    * Thailand (th_TH)
    * Turkey (tr_TR)
    * United States (en_US)
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Laninstep=
This is part of the remote install (CID) setup.
 
  SET Laninstep=C:\Cid\Img\Ibmpeer
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET LastDrive=
 
This specifies the last valid drive letter for DOS or Windows sessions.
 
  SET LASTDRIVE=drive
 
Parameters:
 
Value can be any letter from C to Z .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
 
=SET Lib=
 
Used by various compilers. Points to the directories where lib files are stored.
  SET Lib=Path1;Path2, ...
 
Parameters:
 
Path can be any full path .
If you define more than one path, they must be delimited with a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Library_Path=
 
Points to the path where the EMX-C Compiler stores the lib files.
 
  SET Library_Path=Path
 
Parameters:
 
Path can be any full path . If you have several paths they must be delimited by a semicolon.
 
note: You must use the Unix-like forwardslashes instead of the backslashes. See the example below:
  SET Library_Path=c:/emx/lib
 
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Lite_Locales=
This is used by the Net Question Help system in IBM Visualage for C++ 4.0 and IBM Visualage for Java.
 
  SET LiteLocales=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET LocPath=
The Locpath tells OS/2 were to find the language files. These files are needed for different languages.
 
  SET Locpath=E:\IBMI18N\LOCALE;E:\LANGUAGE\LOCALE
 
Parameters:
 
If you have several Paths you must delimit them with a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
 
=SET LogName=
Needed by some XFree86/OS2 programs. The XFree86/OS2 documentation says that this variable may be used in the future. The Logname should be set to the same username as in SET User defined.
 
  SET LogName=Oliver
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Lotus_CLS=
Is used by the Lotus Smartsuite.
 
  SET Lotus_CLS=Path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET LPath=
This is used by the IBM Visualage for C++ Compiler.
 
  SET LPath=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Lxevfref=
This is used by the IBM Visualage for C++ Compiler. Defines which files should be shown in the Editor Referenz Guide.
 
  SET Lxevref=Evfelref.inf+Lpxcref.inf
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Lxevfhdi=
This is used by the IBM Visualage for C++ Compiler. Defines which files should be shown in the Editor HowTos.
 
  SET Lxevfhdi=Evfelhdi.inf+Lpexhdi.inf
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Mga=
 
This is used by Matrox graphiccards. Defines the path to the Matrox directory.
 
  SET MGA=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET MMBase=
Sets up the base directory for OS/2s multimedia programs.
 
  SET MMBAse=C:\MMOS2
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET ManPath=
Needed by XFree86/OS2. Defines the path where the man (manual) files are installed.
 
  SET ManPath=E:/user/emx/XFree86/man
 
note: Please use the Unix like forward slash as the directory separator!
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET MenuStyle=
With this variable you can delete some entries from the popup menu of folders such as Help, New, Move, Copy, and Delete.
 
note:
In Warp 4.0 you can change this from the system settings notebook.
 
  SET MENUSTYLE=value
 
Parameters:
 
Value can be SHORT or LONG .
If this variable is not set it defaults to LONG .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET MenusFollowPointer=
This variable enables the Warpcenter to follow the pointer with the selected menu. If the menu entry has a submenu you don't have to click on the arrow. Simply wait a second while the pointer is over the menu and the submenu will open.
 
  SET MENUSFOLLOWPOINTER=value
 
Parameters:
 
Value can be ON or OFF .
 
* SET MENUSFOLLOWPOINTER=ON
The menus of the Warpcenter follow the pointer.
* SET MENUSFOLLOWPOINTER=OFF
The menus won't follow the pointer.
 
If this parameter is not set it defaults to OFF .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
 
=SET MfsCache=
Defines the path to the Cache directory for Mobile File Synchronization.
 
  SET MfsCache=path
 
Parameters:
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET MOZILLA...=
These are the SET Statements for Mozilla Firefox and Thunderbird.
 
==SET MOZILLA_HOME==
This statement is to separate the locations of the user profiles in Firefox and Thunderbird.
 
  SET MOZILLA_HOME=<path>
 
Parameters:
Full path of the location of the profile.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==Set MOZ_NO_REMOTE==
Allows to run two instances of Firefox or Thunderbird simultaneously.
 
  Set MOZ_NO_REMOTE=1
 
Parameters:
 
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
==SET MOZILLA_USE_EXTENDED_FT2LIB==
Enables special functions in Firefox and Thuderbird to hanble unicode character, if you have Innotek Font Engine installed.
 
  SET MOZILLA_USE_EXTENDED_FT2LIB=T
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET MmRef=
Used by the IBM OS/2 Programmer Toolkit. Defines which files should be shown in the Multimedia Programming Reference.
 
  SET Mnref=Mmref1.inf+mmref2.inf+mmref3.inf
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET NcDebug=
 
This environment variable is used as a workaround for a bug in Lotus-123s video and audio play back
 
function.
 
  SET Ncdebug=4000
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET NetView_Path=
Defines the path where the SystemView client is installed.
 
  SET NetView_Path=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET NlsPath=
This variable is used somewhere with the National language support for the network and internet
 
applications coming with OS/2.
 
  SET Nlspath=E:\MPTN\MSG\NLS\%N;e:\tcpip\msg\dede850\%N;
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET NntpServer=
This is used by the Newsserver Changi.
 
  SET NntpServer=value
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET NSPR_OS2_NO_HIRES_TIMER=
This is used by Mozilla Firefox and Thunderbird. This causes that firefox and Thunderbird not use the OS/2's high resolution timer.
  set NSPR_OS2_NO_HIRES_TIMER=1
Set this if other applications using the high resolution timer (multimedia apps) act strangely.
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Nwdbpath=
This line is used by the File and Print Client.
 
  SET NwdbPath=path
 
Parameters:
 
Path can be any full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET ObjC_Include_Path=
Points to the path where the EMX-Objective-C Compiler stores the Include files.
 
  SET ObjC_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 forwardslashes instead of the backslashes. See the example below: SET
 
ObjC_Include_Path=c:/emx/include
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Objd_...=
This are the Set Statements used in the Stardock Object Desktop application.
 
==SET Objd_AllVisible==
This environment variable is used by the Object Desktop from Stardock. Allows all invisible objects to
 
be in Control Center browser objects.
 
  SET Objd_AllVisible=1
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Objd_AutoTileNav==
This environment variable is used by the Object Desktop from Stardock. Enables the Norton Commander
 
look in the Object Navigator window.
 
  SET Objd_AutoTileNav=1
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Objd_DisableFastMove==
This environment variable is used by the Object Desktop from Stardock. Whith this optiion 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
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Objd_Log==
This environment variable is used by the Object Desktop from Stardock. When this is set up, trap logs
 
are automatically written to the objdtrap.log file, whenever an error occour.
 
SET Objd_Log=Auto
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Objd_NoDiskAsFolders==
This environment variable is used by the Object Desktop from Stardock. Allows all WPDisk objects in
 
Control Center browser object to be treated as Object Desktop 1.0 disk objects.
 
  SET Objd_NoDiskAsFolders=1
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Objd_NoF12Rollup==
This environment variable is used by the Object Desktop from Stardock. Disables ALT-F12 roll-up
 
accelerator.
 
  SET Objd_NoF12Rollup=1
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Objd_OnavFullMenus==
This environment variable is used by the Object Desktop from Stardock. With this option set, the
 
Object Navigator will show copy, move ... in its context menu.
 
  SET Objd_OnavFullMenus=1
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Objd_UrlNoOpen==
This environment variable is used by the Object Desktop from Stardock. Disables URL open processing
 
for Stardock Internet Shell Objects.
 
  SET Objd_URLNoOpen=1
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Objd_UrlNoPaint==
This environment variable is used by the Object Desktop from Stardock. Disables URL underline painting
 
for Stardock Internet Shell Objects.
 
  SET Objd_URLNoPaint=1
 
Parameters:
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET ObjectSnoozeTime=
Defines the time for that not used DLLs are hold in memory.
 
  SET ObjectSnoozeTime=Value
 
Parameters:
 
Value is the time in seconds.
Standard: 90 seconds.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=Set OD...=
These are the Set Statements used in the IBM OS/2 Developers Toolkit
 
==SET ODBase==
This line is used by the IBM OS/2 Developers Toolkit. 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ODBasePaths==
This line is used by the IBM OS/2 Developers Toolkit. 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ODCfg==
This line is used by the IBM OS/2 Developers Toolkit. 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ODParts==
This line is used by the IBM OS/2 Developers Toolkit. It defines a path for Opendoc.
 
  SET OdParts=path
 
Parameters:
 
Path can be any full path . If you have several paths they must be delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ODPartsPaths==
This line is used by the IBM OS/2 Developers Toolkit. It defines a path for Opendoc.
 
  SET OdPartsPaths=path
 
Parameters:
 
Path can be any full path . If you have several paths they must be delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ODSrc==
This line is used by the IBM OS/2 Developers Toolkit. It defines a path for Opendoc.
 
  SET OdSrc=path
 
Parameters:
 
Path can be any full path . If you have several paths they must be delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ODSrcPaths==
This line is used by the IBM OS/2 Developers Toolkit. It defines a path for Opendoc.
 
  SET OdSrcPaths=path
 
Parameters:
 
Path can be any full path . If you have several paths they must be delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET ODTmp==
This line is used by the IBM OS/2 Developers Toolkit. It defines a path for Opendoc.
 
  SET OdTmp=path
 
Parameters:
 
Path can be any full path . If you have several paths they must be delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET 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 .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Os2_shell=
This variable sets up the command line shell for OS/2.
 
  SET OS2_SHELL=C:\OS2\CMD.EXE
 
note: OS/2 will not start without this variable
 
Parameters:
 
Value can be any command shell with a full path .
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Path=
 
The PATH variable specifies the search path for executables. This is used so that you can start an
 
application from any directory without having to enter the path to the executable file.
 
SET PATH=Path1;Path2;Path3;
 
Parameters:
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET PM_Async_Focus_Change=
Enables the fix for single input queue and sets the timeout.
note: On Warp 4.0 you can change this with the system settings notebook.
 
  SET PM_ASYNC_FOCUS_CHANGE=value
 
Parameters:
 
Value can be ON or OFF or a value expressed in milliseconds .
 
* SET PM_ASYNC_FOCUS_CHANGE=ON
Activate the single input queue fix and set the timeout to 2000 ms.
 
*SET PM_ASYNC_FOCUS_CHANGE=OFF
Deactivate the single input queue fix.
 
*SET PM_ASYNC_FOCUS_CHANGE=1000
Activate the single input queue fix and set the timeout to 1000 ms.
 
 
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|From FP17
|Yes
|Yes
|Yes
|Yes
|}
 
 
=Set Pmas...=
These are the Set Statements for the astronomy program PMAS.
 
==SET Pmas_Lang==
This is used by the astronomy program PMAS. It defines which language the program uses.
 
  SET Pmas_Lang=value
 
Parameters:
 
* Value can be EN or DE .
* Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
==SET Pmas_Ini==
This is used by the astronomy program PMAS. Defines the Path where PMAS stores its config files.
 
  SET Pmas_Ini=Path
 
Parameters:
 
* Value can be any full path .
* Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
==SET Pmas_Nls==
This is used by the astronomy program PMAS.
 
  SET Pmas_Nls=Path
 
Parameters:
 
* Value can be any full path .
* Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Pmaskom_Data==
This is used by the astronomy program PMAS.
 
  SET Pmaskom_Data=file
 
Parameters:
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Pmasmipl_Data==
This is used by the astronomy program PMAS.
 
  SET Pmasmipl_Data=file
 
Parameters:
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Pmaspla_Dll==
This is used by the astronomy program PMAS.
 
  SET Pmaspla_Dll=value
 
Parameters:
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Pmasgraf_Gap==
This is used by the astronomy program PMAS.
 
  SET Pmasgraf_Gap=Path
 
Parameters:
 
Value can be any full path .
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET Pmasgraf_Gb==
This is used by the astronomy program PMAS.
 
  SET Pmasgraf_Gb=Path
 
Parameters:
 
* Value can be any full path . If you have severall paths they must be delimited by a semicolon.
* Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET PmasD118_Data==
This is used by the astronomy program PMAS.
 
  SET PmasD118_Data=file
 
Parameters:
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET PmRef=
Used by the IBM OS/2 Programmer Toolkit. Defines which books should be shown in the Presentation Manager Guide and Reference.
 
  SET Pmref=Pm1.inf+pm2.inf+pm3.inf+pm4.inf+pm5.inf
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Prompt=
Defines the look of the OS/2 prompt.
 
  SET Prompt=Options
 
See the OS/2 online help for the complete parameter description.
note: You can also use Ansi escape sequences to customize your prompt.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET PSIDATADIR=
Set Statement for the PSI jabber client program. This statement allow to change the default profile path to other one.
 
  SET PSIDATADIR=<path>
 
Value can be any full path.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET PnHostName=
Pronews use the value of this variable as the hostname in the message-ID in outgoing news articles.
 
  SET PnHostName=myprovider.net
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Queue_Size_Threshold=
Controls the size of the OS/2-Message-Queue.
 
  SET Queue_Size_Threshold=Value
 
parameter:
 
Value defines the number of messages which can be together at one time in the message-queue.
Standard: 3000 messages, Warp 3 befor Fixpack 17: 100 messages.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET RestartObjects=
 
This variable controls the restart of programs at start up.
 
  SET RESTARTOBJECTS=parameter
 
Default settings:
 
* SET RESTARTOBJECTS=YES
 
Parameters:
 
* Yes
This enables restarting of all running programs. All running processes and all open folders at shutdown will be restarted at start up.
 
* No
The system starts no programs and opens no folders at start up.
 
* StartUpFoldersOnly
Only programs in the startup folder will be started.
 
* ReBootOnly
Restarts programs only after a normal reboot or power on.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Runworkplace=
This variable defines the user interface program (the WPS).
 
  SET RUNWORKPLACE=C:\OS2\PMSHELL.EXE
 
Parameters:
 
Value can be any shell with a full path .
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Runworkplace=ATSHELL.EXE=
This variable change the user interfase program to load at boot, and replace it with Atshell program.
 
  SET RUNWORKPLACE=x:\path\ATSHELL.EXE
where x:\path is wherever ATSHELL.EXE is placed.
 
Parameters:
 
* /Q 
This causes the desktop shell to be launched immediately when ATSHELL  first starts up, without displaying the ATSHELL dialog.  (The ATSHELL dialog will appear, however, when/if you close the desktop shell program.)
* /S 
This enables a simple 'secure' mode.  When ATSHELL is started with this parameter, the command prompt and configuration options are disabled and inaccessible.  USE THIS OPTION WITH CAUTION -- if you don't have an alternative method of booting (such as boot diskettes or a maintenance partition), you won't have any way of changing the  configuration (or even removing ATSHELL from CONFIG.SYS), unless the desktop (or startup) program itself gives you access to a command  prompt.  Alternatively, you can use this in conjunction with the multi-user local logon feature of Security/2, by setting 'atshell /s' as the local shell for non-privileged users, and keeping the WPS (or something else) for the system administrator.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET ScCanBeNuked=
Allows the Warpcenter to have a delete option on its context menu.
 
  SET SCCANBENUKED=value
or
  SET CANBENUKED=value
 
Parameters:
 
Value can be ON or 1 or OFF or 0 .
If this parameter is not set it defaults to OFF
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
 
=SET ScFindUtility=
With this entry you can use a different search program in the Warpcenter. By default, the Warpcenter
 
starts a very slow program when you press this button Warpcenter Find Button In the \OS2\APPS
 
directory is the fast find utility PMSeek.exe which you can use instead of the default program.
 
  SET SCFINDUTILITY=value
or
  SET FINDUTILITY=value
 
Parameters:
 
Value can be any program with a full path .
If this parameter is not set the default find utility is used.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
 
=SET ScKillConfirmDisabled=
Avoid the "Are you sure ..." dialog if using the Warpcenter kill feature. :Note. You must also have
 
the SET SCKILLFEATUREENABLED variable installed.
 
  SET SCKILLCONFIRMDISABLED=value
or
  SET KILLCONFIRMDISABLED=value
 
Parameters:
 
Value can be ON or 1 or OFF or 0 .
If this parameter is not set it defaults to OFF
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
=SET ScKillFeatureEnabled=
This entry enables you to use the Warpcenter window list Warpcenter Window List as an application
 
killer. To kill an application you must hold down the key and click the left mouse button on the
 
window list icon on the Warpcenter. A drop down menu appears and you can then select the process you
 
want to kill. If you have selected a process, the system will ask you if you really want to kill the
 
process.
 
  SET SCKILLFEATUREENABLED=value
or
  SET KILLFEATUREENABLED=value
 
Parameters:
 
Value can be ON , 1 , OFF or 0 .
If this parameter is not set it defaults to OFF
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
=SET ScUsePrettyClock=
With this entry you can change the look of the Warpcenter clock to this: Warpcenter Clock
 
  SET SCUSEPRETTYCLOCK=value
or
  SET USEPRETTYCLOCK=value
 
Parameters:
 
Value can be ON or 1 or OFF or 0 .
If this parameter is not set the default clock is used.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
=Set SDD...=
These are the Set Statements used by the Scitech Software Display Doctor for OS/2.
 
==SET SDDFontDpi==
 
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 change the
 
logical Dots Per Inch (DPI) for matching the logical font point sizes to real pixel sizes.
 
    SET SDDFontDpi=value
 
Parameters:
 
Value can be 96 or 120 .
96 DPI is usually used for small fonts and 120 DPI for large fonts.
If this variable is not set the default of 96 is used.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SDDFontSize==
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 choose small,
 
medium or large fonts.
 
  SET SDDFontSize=value
 
Parameters:
 
Value can be small or medium or large .
If this variable is not set the default small fonts are used.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET 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 and currently in BETA test. 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SDDVRes==
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
 
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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Sg_...=
This are the Set Statements for Pronews.
 
==SET 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
==SET 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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET ShellHandlersINC=
Increases the number of file handles.
 
  SET ShellHandlersINC=Value
 
Parameter:
 
Value is the number of handles by which the standard number of handles are increased. With a standard
 
of 30 handles and SET ShellHandlersINC=20, you have 50 file handles (30 + 20).
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Sibyl_Reg=
This line is used by the Speedsoft Sibyl Pascal compiler to store the registration key.
 
  SET Sibyl_Reg=xxxxxxxxxx
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=Set SM...=
OS/2 SOM Set Statements.
 
==SET SmAddStar==
Used by OS/2 SOM.
 
  SET SmAddStar=1
 
More information will be available in one of the next releases of the Config.Sys Documentation  
 
Project.
 
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SmClasses==
Used by OS/2 SOM.
 
  SET SmClasses=Wptypes.idl
 
More information will be available in one of the next releases of the Config.Sys Documentation
 
Project.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SmEmit==
 
Used by OS/2 SOM.
 
  SET SmEmit=H;IH;C
 
More information will be available in one of the next releases of the Config.Sys Documentation
 
Project.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SmInclude==
 
Used by OS/2 SOM. Defines the directories where the special SOM header files are stored.
 
  SET SmInclude=Paths
 
Parameters:
 
Paths can be any full path or any relative path .
 
If you use more than one path, the paths must be delimited by a semicolon.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SmNotc==
Used by OS/2 SOM.
 
  SET SmNotc=1
 
More information will be available in one of the next releases of the Config.Sys Documentation
 
Project.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SmTmp==
 
Used by OS/2 SOM. Points to a directory used to store temparaley files.
 
  SET SmTmp=Path
 
Parameters:
 
Path can be any full path .
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET SMG_Path=
This is used by the IBM AO-Manager.
 
  SET SMG_Path=Path
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET SMG_Pl2Nlg=
This is used by the IBM AO-Manager.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET SOM...=
OS/2 SOM Set Statements.
 
==SET SomBase==
Used by OS/2 SOM.
 
  SET Odbase=path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SomdDebug==
Used by OS/2 SOM.
 
  SET SomDDebug=10
 
More information will be available in one of the next releases of the Config.Sys Documentation
 
Project.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SomdDir==
Used by OS/2 SOM. Points to the DSOM directory, DSOM stands for Distibuted SOM.
 
  SET SomdDir=Path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SomdMessageLog==
Used by OS/2 SOM.
 
  SET SomDMessageLog=Somd.log
 
More information will be available in one of the next releases of the Config.Sys Documentation
 
Project.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SomdPort==
Used by OS/2 SOM.
 
  SET SomdPort=4096
 
More information will be available in one of the next releases of the Config.Sys Documentation
 
Project.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SomdTimeout==
Used by OS/2 SOM.
 
  SET SomdTimeout=300
 
More information will be available in one of the next releases of the Config.Sys Documentation
 
Project.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SomIR==
Used by OS/2 SOM. Points to all *.ir files needed by SOM.
 
  SET SomIR=E:\OS2\ETC\SOM.IR;SOM.IR
 
Parameters:
 
You can use any *.ir file. If you use more than one files, the files must be delimited by a semicolon.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SomRunTime==
Used by OS/2 SOM.
 
  SET SomRunTime=Path
 
More information will be available in one of the next releases of the Config.Sys Documentation
 
Project.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SomSockets==
Used by OS/2 SOM.
 
  SET SomSockets=TcpIpSockets
 
More information will be available in one of the next releases of the Config.Sys Documentation
 
Project.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
==SET SomThreadPeer==
The SomThreadPeer environment variable is used by the Lotus Smartsuite.
 
  SET SomThreadPeer=1
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Sourcepath=
Defines the path to the OS/2 install diskettes image files. Normally this is the OS2IMAGES directory on the OS/2 install CDRom, if you have the files somewhere else you can define here the right path. The Sourcepath variable is used by the OS/2 install programm and by the programms in the "Install/Delete" folder.
 
  SET Sourcepath=path
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET SPCH...=
IBM Voicetype Set Statements.
 
==SET Spch_Bin==
Used by Voicetype.
 
  SET Spch_Bin=Path
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
==SET Spch_MainLang==
 
Used by OS/2 Voicetype.Defines the language which Voicetype uses for "Voictype 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 abbrevations as used in the Lang environment variable. For example: Use SET Spch_MainLang=En_US for American english .
 
More information will be available in one of the next releases of the Config.Sys Documentation Project.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
 
==SET Spch_Path==
Used by Voicetype.
 
  SET Spch_Path=Path
 
More information will be available in one of the next releases of the Config.Sys Documentation Project.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
 
==SET Spch_Run==
Used by Voicetype.
 
  SET Spch_Run=Path
 
More information will be available in one of the next releases of the Config.Sys Documentation Project.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
 
==SET Spch_Rw==
Used by Voicetype.
 
  SET Spch_Rw=Path
 
More information will be available in one of the next releases of the Config.Sys Documentation Project.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
 
==SET Spch_Trn==
Used by Voicetype.
 
  SET Spch_Bin=Trn
 
More information will be available in one of the next releases of the Config.Sys Documentation Project.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!OS/2 2.x
!OS/2 3.0
!OS/2 4.0
!OS/2 4.5x
!eCS 1.x
!eCs 2.x
|-
|No
|No
|Yes
|Yes
|Yes
|Yes
|}
 
 
=SET SrvName1=
This line is used for remote installations of OS/2.
 
  SET SrvName1=xxxxxxx
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Steward_Cf=
This is used by the POP3 and SMTP Mailserver Inet.Mail.
 
  SET Steward_Cf=Path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Swing_Home=
This line points to the home directory of the Java Swing Runtime.
 
  SET Swing_Home=path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET System_Ini=
Tells the system the path and name of the System INI file. This file contains a lot of system related
 
settings. Be careful, this is a critical system file!
 
  SET SYSTEM_INI=C:\OS2\OS2SYS.INI
 
Default settings:
 
* SET SYSTEM_INI=C:\OS2\OS2SYS.INI
 
Parameters:
 
Value can be any path to a valid System INI file .
 
 
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Telnet.Password.ID=
Sets a password for the telnet daemon (Telnetd).
 
  SET Telnet.Password.ID=password
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Temp=
Here you can define a directory were OS/2 and programs can store temporarily files. It is a god idea to use the same directory as used in SET Tmp. Check the directory time by time to see if there are temporally file that you can delete, because some applications forget to delete their temporally files.
 
  SET Temp=C:\Temp
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Term=
The Term environment variable defines the timinal type for some applications which uses the EMX-Runtime-Environment. All available terminal types are stored in the termcap file defined by the termcap environment variable.
 
  SET TERM=Ansi
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET TermCap=
Defines the termcap file for applications which uses the EMX-Runtime-Environment. The termcap file stores all the settings needed for a specific terminal type. The terminal type is set up by the Term variable.
 
  SET TermCap=C:/user/emx/etc/termcap.dat
 
note: You must use a Unix like forward-slash as a directory separator!
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Tmp=
Here you can define a directory were OS/2 and programs can store temporarily files. It is a god idea to use the same directory as used in SET Temp. Check the directory time by time to see if there are temporally file that you can delete, because some applications forget to delete their temporally files.
 
  SET Tmp=C:\Temp
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET TZ
 
Use this to SET up the correct timezone you live in. The time zone is used by many network or internet application to determine the correct General Mean Time (GMT, UTC or MEZ).
 
SET Tz=SSSdiffDDD,sm,sw,sd,st,em,ew,ed,et,offset
 
Parameters:
 
* SSS
The identifier of the standard timezone (wintertime). It must be three characters long, start with a letter and can contain spaces.
 
* diff
This is the difference between the GMT time and your local time. Diff is defined in hours, hours and minutes or hours, minutes and seconds. You can specify positive and negative values. Positive values denotes a timezone west of the Greenwich meridian. A negative value denotes a timezone east of the Greenwich meridian. See the examples for diff values below:
      Diff is one hour east -1
      Diff is one hour and 30 minutes west 1:30
      Diff is one hour, 30 minutes and 20 seconds west 1:30:20
 
* DDD
The identifier of the daylight savings timezone (summertime). It must be three characters long, start with a letter and can contain spaces.
 
* sm
Starting month of the daylight savings time.
Sm can be in the range from 1 to 12 .
Default: 4
 
* sw
Starting week of the daylight savings time.
Sw can be in the range from -4 to 4 . -1 is the last week of the month, -2 the week before the last week, ..., 0 no week specified, ... and 1 is the first week.
Default: 1
 
* sd
Starting day of the daylight savings time.
Sd can be in the range from 0 to 6 if sw is not 0. 0 is the sunday, 1 is the monday, ... and 6 is the saturday.
Sd can be in the range from 1 to 31 if sw equals 0.
Default: 0
 
* st
Starting time of the daylight savings time.
St can be in the range from 1 to 86400 . St is counted in seconds from midnight. If the switch to daylight savings time occours at 01:00:00 O'clock in the night, you should set st to 3600.
Default: 3600
 
* em
Ending month of the daylight savings time.
Em can be in the range from 1 to 12 .
Default: 10
 
* ew
Ending week of the daylight savings time.
Ew can be in the range from -4 to 4 . -1 is the last week of the month, -2 the week before the last week, ..., 0 no week specified, ... and 1 is the first week.
Default: -1
 
* ed
Ending day of the daylight savings time.
Ed can be in the range from 0 to 6 if ew is not 0. 0 is the sunday, 1 is the monday, ... and 6 is the saturday.
Ed can be in the range from 1 to 31 if ew equals 0.
Default: 0
 
* et
Ending time of the daylight savings time.
Et can be in the range from 1 to 86400 . Et is counted in seconds from midnight. If the switch to daylight savings time occours at 01:00:00 O'clock in the night, you should set et to 3600.
Default: 7200
 
* offset
The difference between standard time and daylights savings time.
Offset can be in the range from 1 to 86400 .
One hour is 3600 seconds.
Default: 3600
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET ULSPath=
Defines the path to the Unicode languages files.
 
  SET Ulspath=C:\Language
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Use_Hosts_First=
If Use_Hosts_First is set up, tcp/ip will first look in the local file ..\Etc\Hosts for the dotted IP address for a specific Hostname on the internet. Let me explain - Whenever you connect to the internet and you access a host ( for example www.netlabs.org ), your browser must know the dotted IP address ( for example 195.65.67.48 ) for the host. So the Browser contact a Domain name Server (DNS) and ask for the IP address. This takes some time, to speed up internet connection you can define in the Hosts file the hostnames and the IP addresses. OS/2 will only use Hosts file if Use_Hosts_First is set to 1. You can define all kind of hosts www-server, mail-server, news-server, ftp-server or whatever else. To get the IP address for a host type "host" and the hostname in an OS/2 window. The actual Path for the host file is defined by the Etc environment variable.
 
  SET Use_Hosts_First=1
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET User=
Needed by some XFree86/OS2 programs. The XFree86/OS2 documentation says that this variable may be used in the future. The User should be set to the same username as in SET LogName defined.
 
  SET User=Oliver
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET User_Ini=
This variable tells OS/2 the path and name of the User INI file. This file contains information about desktop settings and various applications. Be careful, this is a critical system file!
 
  SET USER_INI=C:\OS2\OS2.INI
 
Default settings:
 
* SET USER_INI=C:\OS2\OS2.INI
 
Parameters:
 
Value can be any path to a valid User INI file .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Vacpp_Shared=
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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET VbPath=
This line is used by the IBM Visualage C++ Compiler.
 
  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.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET Vcfg_NO_DDC=
This line is used GRADD based graphiccard drivers. It controls if your monitor capabilities should be read with the Display Data Channel (DDC) or not.
 
  SET Vcfg_No_DDC=value
 
Parameters:
 
Value can be True or False . If set to False or the variable is not set up, than will the graphiccard driver use DDC to read the monitor capabilities.
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Vio_Mga=
This line is used by matrox graphiccard drivers.
 
  SET Vio_Mga=Device(Bvhvga,Bmgax64)
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET VIO_SVGA=
Needed by SVGA Graphiccards.
 
  SET Vio_svga=Device(Bvhvga,Bvhsvga)
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Video_Devices=
Needd by VGA and SVGA Graphiccards.
 
  SET Video_Devices=Viosvga
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET VisproC=
Used by Vispro C. Points to the directory where Vispro C is installed.
 
  SET VisproC=Path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Visprorx=
Used by Vispro Rexx. Points to the directory where Vispro Rexx is installed.
 
  SET VisproRX=Path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET VpBase=
Used by Virtual Pascal. Points to the directory where Virtual Pascal is installed.
 
  SET VpBase=Path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET VpHelp=
Used by Virtual Pascal. Defines the directory where the Virtual Pascal help files are stored.
 
  SET VpHelp=Path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET VpLib=
Used by Virtual Pascal. Points to the Virtual Pascal Library files.
 
  SET VpLib=Path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET VpOut=
Used by Virtual Pascal. Defines the directory where the compiled projects should be written to.
 
  SET VpOut=Path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET 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 .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Watcom=
This line is used by the Watcom C/C++ Compiler and defines the directory where it is installed.
 
  SET Watcom=Path
 
Parameters:
 
Path can be any full path .
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET WpsRef=
Used by the IBM OS/2 Programmer Toolkit. Defines which books should be shown in the WPS Guide and Reference.
 
  SET Wpsref=Wps1.inf+wps2.inf+wps3.inf
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET Wps_Communication=
This line is used by the File and Print Client.
 
  SET Wps_Communication=YES
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET 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:\user\emx\Xfree86" then set up X11Root to "D:/user/emx"
 
note: You must use a Unix like forward-slash as a directory separator!
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
 
=SET X11Shell=
Needed by XFree86/OS2. Defines the shell to be used within XFree86/Os2, if you want to use the standard Cmd.exe this line is not necessary.
 
  SET X11Shell=E:\user\emx\XFree86\
 
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}
 
=SET XServer=
Needed by XFree86/OS2. Defines the X server to be used. You must choose the right server for your graficcard.
 
  SET XServer=E:/user/emx/XFree86/bin/XF86_SVGA.exe
 
Parameters:
note: You must use a Unix like forward-slash as a directory separator!
Possible XServers 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
Value can be any full path . Relative paths are not allowed.
 
<b>Platform Support:</b>
{| class="wikitable" style="text-align:center" border="1"
|-
!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
|}

Latest revision as of 00:59, 23 February 2020

The Config.sys Documentation Project
  1. BASEDEV Statements
  2. CALL Statements
  3. DEVICE Statements
  4. IFS Statements
  5. OS/2 Commands
  6. DOS Commands
  7. RUN Statements
  8. SET Statements
  9. PSD Statements
  10. Other Information
  1. Programs
  2. Hardware
  3. List of Statements

Environment variables are stored by OS/2 in memory and can be called by any program. They are used by many programs to store information (for example, the install path) or some configuration information. If you want to see a list of all installed environment variables and their values, type "Set" in an OS/2 window. If the list is too long, you can redirect the screen output to a file, simply type this:

SET >output.txt

General Tips

Note that SET commands in CONFIG.SYS behave differently than when entered on the command line.

So, when you issue the following commands in a OS/2 session:

SET TEMP=C:\TMP
SET TMP=%TEMP%

you get:

TEMP=C:\TMP
TMP=C:\TMP

But, if you add the same lines to CONFIG.SYS:

SET TEMP=C:\TMP 
SET TMP=%TEMP%

you get:

TEMP=C:\TMP
TMP=%TEMP%

but not TMP=C:\TMP. The environment variable TMP now has the value composed by the letters "%", "T", "E", "M", "P", "%". For that reason, in CONFIG.SYS, you must write the values explicitly as follows:

SET TEMP=C:\TMP
SET TMP=C:\TMP

This is because variables are not expanded during CONFIG.SYS processing, but they are when run from a shell (command line).

Base Operating System

PM

Help Manager

Workplace Shell

WarpCenter

Multimedia

Installation

Layered Products

Programming Environments

Toolkit
  • CPREF - Control Program Reference
  • GPIREF - GPI Reference
  • INCLUDE - Include directory
  • IPF_KEYS - IPF key definitions
  • IPFC - IPF compiler
  • LIB - Points to directories where lib files are stored.
  • MMREF - Defines which files should be shown in the Multimedia Programming Reference.
  • PMREF - Presentation Manager Reference
  • WPSREF - Workplace Shell Reference
SOM
SOMobjects
Java Run-time

Networking

LAPS
LAN Services
TCP/IP
MFS
Global Security Runtime
  • NETVIEW_PATH - Defines the path where the SystemView client is installed.
  • SRVNAME1 - Used for remote installations of OS/2.
  • TEMP - Define a directory were OS/2 and programs can store temporarily files.
  • TMP - Define a directory were OS/2 and programs can store temporarily files.


Check also CONFIG.SYS - SET Statements (Additional software).