I have been waiting to see if others post answers to your question as I think it is an interesting project. I suspect you can do it from a command line but there may be quite a bit to it. However, once configured I think it could provide you with a template that could easily be modified.
A bit of information that might be of use:
You can configure a standard NIC from a command line using NETSH. eg:
netsh interface ip set address name = "Local Area Connection" source = static addr = 10.0.0.99 mask = 255.255.255.0
netsh interface ip set address name = "Local Area Connection" gateway = 10.0.0.254 gwmetric = 1
netsh interface ip set dns name = "Local Area Connection" source = static addr = 24.222.0.91
netsh interface ip add dns name = "Local Area Connection" addr = 24.222.0.33
You can configure the Firewall with NSTSH Firewall ......
I don't have a wireless card here to try but there may be more wireless options with NETSH as there are an enormous number of parameters with this command. Enter NETSH /? and then further explore each returned option.
Other items such as use zero configuration utility and preferred wireless networks could be configured from a command line as they are group policy items.
One other possibility is configuring various items like types of authentication by adding registry entries from the command line.
Following are a couple of links that may assist you:
http://www.microsoft.com/t
http://www.microsoft.com/t
http://www.asp101.com/arti
Main Topics
Browse All Topics





by: Impulse0022Posted on 2005-08-11 at 13:14:43ID: 14655482
Nobody?