I'm trying to invoke Internet Options Control Panel applet through command line (Run dialogue). Specifically, the "Connections" tab.
I used the following syntax:
rundll32.exe shell32.dll,Control_RunDLL INETCPL.CPL,,4
Which worked fine. My question is 2-fold:
- For the "Control_RunDLL" function, what is the 2nd parameter it takes?
(In my cases, and in all the documentation I found, it's NULL or empty) (1st parameter being the applet name, and the 3rd being the tab number)
- Where can I access Microsoft documentation that specifically mentions the 2nd parameter?