Resolution Changer
From WPKG | Open Source Software Deployment and Distribution
Resolution Changer is a command line tool for changing screen resolution, color depth and refresh rate.
You may need it if you installed graphics drivers, when monitors or graphics cards were changed etc.
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
id="reschangecon"
name="Resolution Changer"
revision="1"
reboot="false"
priority="1"
execute="once">
<install cmd='"%SOFTWARE%\reschangecon.exe" -width=1024 -height=768 -depth=32' />
</package>
</packages>
Trick: <install cmd='"%SOFTWARE%\reschangecon.exe" -width=max -height=max -depth=max' />
There is also a free(reschange is not free for commercial use) alternative. It can be downloaded from [1].
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
id="qres"
name="Resolution Changer (qres)"
revision="1"
reboot="false"
priority="1"
execute="once">
<install cmd='"%SOFTWARE%\qres\QRes.exe" /x 1280 /y 1024 ' />
</package>
</packages>