NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

/TSAWARE (Create Terminal Server Aware Application)

/TSAWARE[:NO]

The /TSAWARE linker option sets a flag in the IMAGE_OPTIONAL_HEADER DllCharacteristics field in the program image's optional header. When this flag is set, Terminal Server will not make certain changes to the application.

When an application is not Terminal Server aware (also known as a legacy application), Terminal Server makes certain modifications to the legacy application to make it work properly in a multiuser environment. For example, Terminal Server will create a virtual Windows folder, such that each user gets a Windows folder instead of getting the system's Windows directory. This gives users access to their own INI files. In addition, Terminal Server makes some adjustments to the registry for a legacy application. These modifications slow the loading of the legacy application on Terminal Server.

If an application is Terminal Server aware, it must neither rely on INI files nor write to the HKEY_CURRENT_USER registry during setup.

If you use /TSAWARE:yes and your application still uses INI files, the files will be shared by all users of the system. If that is acceptable you can still link your application with TSAWARE:yes, otherwise you need to use /TSAWARE:NO option.

The /TSAWARE linker option is enabled by default for Windows 2000 and later, for Windows and console applications. See /SUBSYSTEM and /VERSION for information.

/TSAWARE is not valid for drivers, VxDs, or DLLs.

See Also

Setting Linker Options | Linker Options | FAQ: Building Your Program | Storing User-Specific Information | Legacy Applications in a Terminal Services Environment