Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Windows 98: "Run program in 256 Color Mode" (https://thetfp.com/tfp/tilted-technology/95678-windows-98-run-program-256-color-mode.html)

CSflim 10-04-2005 01:50 AM

Windows 98: "Run program in 256 Color Mode"
 
In Windows XP you can right click on an application shortcut and tick a "run program in 256 color mode" box. This is very useful if you run a lot of software which is a few years old.
I am currently setting up a few Win 98 machines, and would like a similar feature. Basically, I don't want to have to have the users of these machines (who wouldn't be very tech savy) to be constantly changing system settings just to run software. Is there a way I can set Windows 98 to automatically switch to 256 colors when a particular application is launched, and then change it back to 32-bit when the application is closed?
Thanks.

CSflim 10-05-2005 11:23 AM

Ok well I managed to sort it out myself. For anybody curious, here is what I did.

I downloaded a nifty little tool called NirCmd which is a command line tool which lets you do lots of useful things to your windows settings. For each 256 color mode program I created a batch file which used NirCmd to switch the color depth down to 256, calls the applications exe, and then switches the color depth back up.

This NirCmd seems like a very cool, useful program. Might be worth checking out.

MikeSty 10-05-2005 01:37 PM

Could you post the source for the batchfile? :)

CSflim 10-05-2005 03:01 PM

@echo off
nircmd setdisplay 800 600 8
cd "C:\The Working Directory\"
"C:\Path To The Program.exe"
nircmd setdisplay 800 600 24

MikeSty 10-05-2005 03:23 PM

nice work man :)

flat5 10-05-2005 03:54 PM

Thank you CSflim for the followup.
Very small and flexable utility. Appearently free to use!


All times are GMT -8. The time now is 09:50 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73