Window's proxy settings

S

sen

I am trying to execute Windows proxy settings from the right click of
explorer. So far I have added text "Proxy" to the right click which was the
easy part. Now I need help on how to open the Proxy Settings window. I
beleive I now the correct method but I dont know the "path" or "call
reference"

CODE:
Windows Registry Editor Version 5.00

[HKEY_USERS\S-1-5-21-1454471165-2052111302-725345543-1004\Software\Microsoft
\Internet Explorer\MenuExt]

[HKEY_USERS\S-1-5-21-1454471165-2052111302-725345543-1004\Software\Microsoft
\Internet Explorer\MenuExt\Proxy]

Im guessing that the next line should look like one of the two following
lines of code
@="PATH"
OR
"Exec"="PATH"

Also is it possible that all these windows are references to CLSIDs. If so
is there a source which will tell me what CLSID is what?
 
S

sen

I have tried the following settings and I am still unable to get the file to
execute. Could someone tell me what I am doing wrong.
[HKEY_USERS\S-1-5-21-1454471165-2052111302-725345543-1004\Software\Microsoft
\Internet Explorer\MenuExt\Proxy]
;TESTED
rundll32 shell32,Control_RunDLL "inetcplc.dll,1100" I am almost certian this
is the dialog/windows form

for Proxy Settings (1100 or 4 for the Internet Options Tab)
;TESTED
@="%windir%\\System32\\inetcplc.dll,1100"
;TESTED
"Exec"="inetcpl.cpl,1100"
;TESTED
@="inetcpl.cpl"
;TESTED
"Exec"="%windir\\System32\\inetcpl.cpl@4"
AND several others.


If anyone knows how to make submenu that cascade plz let me know.
 
S

sen

Has anyone tried this yet. I have been trying to reference string tables but
this isnt working also. I know this can be done since windows stores the
information itself in the registry I just havent found a good example in the
registry to compare to.

I have however got this to work partially for the taskbar. Meaning I can add
the item and get it to launch but not to the actual tab or referenced window
like "Proxy Settings".

Could really use some ideas or help on how the dll files, cmd commands and
exe's are refernced in this case. This could be really useful and mean add
functionality.

: I have tried the following settings and I am still unable to get the file
to
: execute. Could someone tell me what I am doing wrong.
:
[HKEY_USERS\S-1-5-21-1454471165-2052111302-725345543-1004\Software\Microsoft
: \Internet Explorer\MenuExt\Proxy]
: ;TESTED
: rundll32 shell32,Control_RunDLL "inetcplc.dll,1100" I am almost certian
this
: is the dialog/windows form
:
: for Proxy Settings (1100 or 4 for the Internet Options Tab)
: ;TESTED
: @="%windir%\\System32\\inetcplc.dll,1100"
: ;TESTED
: "Exec"="inetcpl.cpl,1100"
: ;TESTED
: @="inetcpl.cpl"
: ;TESTED
: "Exec"="%windir\\System32\\inetcpl.cpl@4"
: AND several others.
:
:
: If anyone knows how to make submenu that cascade plz let me know.
:
:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top