Reply to thread

sure - .bat files weren't attachable, so i just pasted the contents here instead.



Change the width, height, color depth and refresh rate as below.

Note that I change the display twice to 'force' the resolution to be updated.


[CODE]

@echo off


rem http://www.12noon.com/displaychanger.htm

rem sets the display to the correct resolution

rem if the hdmi display is disconnected, then sometimes the resolution reverts to 600x400


rem "c:\Program Files\12noon Display Changer\dccmd.exe" -listmonitors


"c:\Program Files\12noon Display Changer\dccmd.exe" -monitor="\\.\DISPLAY1" -primary -width=1280 -height=720 -depth=32 -refresh=50

"c:\Program Files\12noon Display Changer\dccmd.exe" -monitor="\\.\DISPLAY1" -primary -width=1280 -height=720 -depth=32 -refresh=60

[/CODE]


Top Bottom