I'm Rob Marshall, a consultant who specialises in the Microsoft System Center Configuration Manager product. I like to share, i do so by blogging and helping out when I can in the MS SMS newsgroups and participating in the ConfigMgr MVP program.
I was awarded and joined the program in 2009. It'd be an understatement to say it has to be one of the best experiences an IT engineer can have, if they really enjoy specialising in a product.
My biggest weapon for troubleshooting is, my formidable knowledge, no, only joking, you, the community. I find if I cannot answer a question, then I can usually find the answer from using Bing\Google, pouring over the documentation, and if that doesn't work, tinkering in mine or someone elses virtual lab.
The blogs pretty much about ConfigMgr, but it is also a platform for me to express my random urges to display something I've stumbled across, and that I imagine would entertain you or what not as equally as it did me.
The ProxyCfg.exe utililty is an important tool, which us SMS Admins will encounter when we need to adjust proxy settings on a client so that it can communicate with the assigned site servers WSUS role.
I needed ProxyCfg to solve a problem on a Windows 2008 Enterprise server today, and found out that ProxyCfg.exe has been deprecated on Vista and Win2008, but what replaces it?
The answer is the NetSH command.
To show the current proxy settings (from a CMD prompt)
Or
To set the proxy
More commands are available
dump - Displays a configuration script.import - Imports WinHTTP proxy settings. (equiv of ProxyCFG -u)reset - Resets WinHTTP settings. (equiv of ProxyCFG - D)set - Configures WinHTTP settings.show - Displays currents settings.
So now all functionaly of ProxyCfg can be accomplished using the NetSH command
ProxyCfg -U = NetSH WinHTTP import Proxy ie
ProxyCfg -D = NetSH WinHTTP reset proxy
ProxyCfg -P = NetSH WinHTTP Set Proxy proxy-server="PROXY.COM:8080" bypass-list="SERVER.COM"
Should get you up and running again ...