Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Legacy application deployment

Status
Not open for further replies.

misdial

Technical User
Mar 28, 2005
2
US
Friends:

I am in need of information on replicating "compatability mode" settings when moving executables to host machines. Does anyone have any ideas on this. I have searched technet, as well as the web for info on this, and have been found wanting.

Thanks,

Misdial
 
OK all, I found the answer from MSFQN:

I dont know if thats possible but a workaround would be to make a batch file that enables compatibility mode, runs the program and then switches off compatibility mode.

the following code runs a program called filename.exe in windows 98 compatibility mode.

CODE
set __COMPAT_LAYER=Win98
filename.exe
set __COMPAT_LAYER=
exit

Below is a list of modes you can use:

256Color
640x480
Win95
NT4SP5

The following codes sets Win95, 640x480 and 256Color

CODE
set __COMPAT_LAYER=Win95 640x480 256Color
filename.exe
set __COMPAT_LAYER=
exit


Thanks,

Misdial
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top