vote up 2 vote down star

How do I open a custom control panel programmatically, like custom.cpl? Specifically, how do I open a 64-bit cpl when running as 32-bit application?

flag
why community wiki? – Serge - appTranslator Feb 12 at 12:58
I decided for community wiki as I basically answered the question myself, but only for 32-bit control panel. – vividos Feb 12 at 15:50

2 Answers

vote up 2 vote down check

Vista added support for canonical names so you don't have to hard code dll filenames and tab indexs

Example: WinExec("%systemroot%\system32\control.exe /name Microsoft.WindowsUpdate", SW_NORMAL);

(Names are always in english)

See MSDN for a list

XP/2000 supports "control.exe mouse" and a few other keywords, see the same MSDN page for a list (You can probably find some undocumented ones by running strings on control.exe)

link|flag
vote up 4 vote down

Since I didn't find a good answer here on SO, here's the solution of my research:

  • Start a new application "control" that gets the name of the control panel as its first parameter:
::ShellExecute(m_hWnd, NULL, _T("control.exe"), _T("access.cpl"), NULL, SW_SHOW);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.