Opening Control Panel / Display Properties: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Added category links.)
m (Adding new author and category links.)
Line 1: Line 1:
{|align=right
{{PageAuthor|seu}}
|<small>Author: [[{{ns:2}}:seu|seu]] ([[{{ns:3}}:seu|talk]], [[{{ns:-1}}:Contributions/seu|contrib]])</small>
 
|}
<br style="clear:both;">
== How To Use ==
== How To Use ==
To open control panel (to let the user change some setting, for example) you can use RUNDLL32.EXE, like this:
To open control panel (to let the user change some setting, for example) you can use RUNDLL32.EXE, like this:
Line 19: Line 17:
</highlight-nsis>
</highlight-nsis>


[[{{ns:14}}:Code Examples]]
[[Category:Code Examples]]

Revision as of 13:33, 24 June 2005

Author: seu (talk, contrib)


How To Use

To open control panel (to let the user change some setting, for example) you can use RUNDLL32.EXE, like this:

Rundll32.exe shell32.dll,Control_RunDLL <contrl>,<applet>, <page>

For Display Properties / Screen Saver the command would be:

Rundll32.exe shell32.dll,Control_RunDLL Desk.cpl,@0, 1

So you can add some section at the end of your script for doing it with the Exec command:

Section "Display Properties"
        Exec 'Rundll32.exe shell32.dll,Control_RunDLL Desk.cpl,@0, 1'
SectionEnd