There is no real way to save "static" settings for wireless networks. The 'wireless' network you connect to decides that configuration and makes those changes...
However, if you are willing to click a couple times there is a work around for this...
you can create a .bat file that will change your settings for you when you connect to a certain network.
Something along these lines:
Code:
netsh interface ip set address name="Local Area Connection" source=static addr=111.222.333.444 mask=255.255.255.255
netsh interface ip set address name="Local Area Connection" gateway=555.666.777.888 gwmetric=0
netsh interface ip set dns name="Local Area Connection" source=static addr=999.111.222.333
netsh interface ip add = "Local Area Connection" addr = 444.555.666.777
so basically, you'd create this .bat file then use it before connecting to a particular network.