Index: dll/win32/shell32/wine/shellord.c =================================================================== --- dll/win32/shell32/wine/shellord.c (revision 66337) +++ dll/win32/shell32/wine/shellord.c (working copy) @@ -1082,8 +1082,10 @@ */ BOOL WINAPI SHRunControlPanel (LPCWSTR commandLine, HWND parent) { - FIXME("(%s, %p): stub\n", debugstr_w(commandLine), parent); - return FALSE; + if((int)ShellExecute(parent,NULL,commandLine,NULL,NULL,SW_NORMAL)>32) + return TRUE; + else + return FALSE; } static LPUNKNOWN SHELL32_IExplorerInterface=0;