ProxySettings: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
No edit summary |
mNo edit summary |
||
Line 13: | Line 13: | ||
== Usage of plugin == | == Usage of plugin == | ||
The following example shows how to change the proxy-settings for all | |||
dialup-connections but only for http-proxy: | |||
... | |||
ProxySettings::GetConnectionCount | |||
pop $0 | |||
ProxySetLoop: | |||
intop $0 $0 - 1 | |||
GetConnectionName | |||
pop $1 | |||
DetailPrint "$1" | |||
intcmp $0 0 done done ProxySetLoop | |||
... | |||
Please read the documentation for verbose descriptions how to use the plugin. | |||
== Credits == | == Credits == | ||
*Written by [[User:M.Ratz|M.Ratz]] | *Written by [[User:M.Ratz|M.Ratz]] |
Revision as of 15:46, 7 February 2008
Author: M.Ratz (talk, contrib) |
ProxySettings Plugin ©2008 by M.Ratz,
Download Link
ProxySettings.zip (93 KB)
Zip-file contains binary, source and documentation.
Description
This plugin makes it possible to set and read proxy-settings and connection information for dialup-connections and LAN-connection
Usage of plugin
The following example shows how to change the proxy-settings for all dialup-connections but only for http-proxy:
...
ProxySettings::GetConnectionCount pop $0
ProxySetLoop:
intop $0 $0 - 1 GetConnectionName pop $1 DetailPrint "$1"
intcmp $0 0 done done ProxySetLoop ...
Please read the documentation for verbose descriptions how to use the plugin.
Credits
- Written by M.Ratz
- last edited 06/02/2008