'Description: Displays the indicated Windows settings dialog.
'Control Panel ( CONTROL.EXE ) '-------------------------------- 'Control Panel: ' rundll32.exe shell32.dll,Control_RunDLL ' 'Accessability Options ( ACCESS.CPL ) '--------------------------------------- 'Keyboard: ' rundll32.exe shell32.dll,Control_RunDLL access.cpl,,1 'Sound): ' rundll32.exe shell32.dll,Control_RunDLL access.cpl,,2 'Display: ' rundll32.exe shell32.dll,Control_RunDLL access.cpl,,3 'Mouse: ' rundll32.exe shell32.dll,Control_RunDLL access.cpl,,4 'General: ' rundll32.exe shell32.dll,Control_RunDLL access.cpl,,5 ' 'Add/Remove Programs ( APPWIZ.CPL ) '------------------------------------- 'Install/Uninstall: ' rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,1 'Windows Setup: ' rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,2 'Startup Disk: ' rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,3 ' 'Display Options ( DESK.CPL ) '------------------------------- 'Background: ' rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0 'Screen Saver: ' rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1 'Appearance: ' rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,2 'Settings: ' rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,3 ' 'Regional Settings ( INTL.CPL ) '--------------------------------- 'Regional Settings: ' rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,0 'Number: ' rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,1 'Currency: ' rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,2 'Time: ' rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,3 'Date: ' rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,4 ' 'Joystick Options ( JOY.CPL ) '------------------------------- 'Joystick: ' rundll32.exe shell32.dll,Control_RunDLL joy.cpl ' 'Mouse/Keyboard/Printers/Fonts Options ( MAIN.CPL ) '----------------------------------------------------- 'Mouse Properties: ' rundll32.exe shell32.dll,Control_RunDLL main.cpl @0 'Keyboard Properties: ' rundll32.exe shell32.dll,Control_RunDLL main.cpl @1 'Printers: ' rundll32.exe shell32.dll,Control_RunDLL main.cpl @2 'Fonts: ' rundll32.exe shell32.dll,Control_RunDLL main.cpl @3 ' 'Mail and Fax Options ( MLCFG32.CPL ) '--------------------------------------- 'General: ' rundll32.exe shell32.dll,Control_RunDLL mlcfg32.cpl ' 'Multimedia/Sounds Options ( MMSYS.CPL ) '------------------------------------------ 'Audio: ' rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,0 'Viedo: ' rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,1 'MIDI: ' rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,2 'CD Music: ' rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,3 'Advanced: ' rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,4 ' = = = = = = = = = = = = = = = = = = = = = = = = = = = 'Sounds Properties: ' rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl @1 ' 'Modem Options ( MODEM.CPL ) '------------------------------ 'General: ' rundll32.exe shell32.dll,Control_RunDLL modem.cpl ' 'Network Options ( NETCPL.CPL ) '--------------------------------- 'Configuration: ' rundll32.exe shell32.dll,Control_RunDLL netcpl.cpl ' 'Password Options ( PASSWORD.CPL ) '------------------------------------ 'Change Passwords: ' rundll32.exe shell32.dll,Control_RunDLL password.cpl ' 'System/Add New Hardware Options ( SYSDM.CPL ) '------------------------------------------------ 'General: ' rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl,,0 'Device Manager: ' rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl,,1 'Hardware Profiles: ' rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl,,2 'Performance: ' rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl,,3 ' = = = = = = = = = = = = = = = = = = = = = = = = = = = 'Add New Hardware Wizard: ' rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl @1 ' 'Date and Time Options ( TIMEDATE.CPL ) '----------------------------------------- 'Date/Time Properties: ' rundll32.exe shell32.dll,Control_RunDLL timedate.cpl ' 'Microsoft Mail Postoffice Options ( WGPOCPL.CPL ) '---------------------------------------------------- 'Microsoft Workgroup Postoffice Admin: ' rundll32.exe shell32.dll,Control_RunDLL wgpocpl.cpl 
|