Difference between revisions of "Resolution Changer"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
Line 44: Line 44:
 
</packages>
 
</packages>
 
</source>
 
</source>
The /r:-1 flag changes the resolution to the monitor's native/optimal resolution.
 
  
 
[[Category:Silent_Installers]]
 
[[Category:Silent_Installers]]
 
[[Category: Changing Windows settings]]
 
[[Category: Changing Windows settings]]

Revision as of 23:43, 18 October 2008

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>


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>