Difference between revisions of "Resolution Changer"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(New page: [http://www.12noon.com/reschange.htm Resolution Changer] is a command line tool for changing screen resolution, color depth and refresh rate. You may need it if you installed graphics dri...)
 
m
Line 3: Line 3:
 
You may need it if you installed graphics drivers, when monitors or graphics cards were changed etc.
 
You may need it if you installed graphics drivers, when monitors or graphics cards were changed etc.
  
<pre>
+
<source lang="xml">
 
<?xml version="1.0" encoding="UTF-8"?>
 
<?xml version="1.0" encoding="UTF-8"?>
  
Line 16: Line 16:
 
   execute="once">
 
   execute="once">
  
   <install cmd='%SOFTWARE%\reschangecon.exe -width=1024 -height=768 -depth=32' />
+
   <install cmd='"%SOFTWARE%\reschangecon.exe" -width=1024 -height=768 -depth=32' />
  
 
</package>
 
</package>
  
 
</packages>
 
</packages>
</pre>
+
</source>
  
  
 
[[Category:Silent_Installers]]
 
[[Category:Silent_Installers]]
 
[[Category: Changing Windows settings]]
 
[[Category: Changing Windows settings]]

Revision as of 14:20, 7 April 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>