How to set screen resolution in bat file

Asked By 20 points N/A Posted on -
qa-featured

I am using Windows XP, I need about how to set screen resolution in bat file, so that when we run the bat file, the resolution of the screen will automatically get changed as per the codings in bat file, also do the needful for getting me the bat file coding for setting the screen resolution.

SHARE
Answered By 0 points N/A #149669

How to set screen resolution in bat file

qa-featured

To set resolution in a batch file you have to type this code in command prompt:

mode con: cols= [whatever you want] lines= [whatever you want]

and in the parenthesis type what value do you want. For example cols= [132] and lines= [87]. That is how you can resize a bat file and when you open it to automatically take this resolution.

Related Questions