I thought there must be a way of doing this with PowerShell so that I don't have to do it on every server, turns out there is:
$nics = Get-WmiObject -Class win32_networkAdapterconfiguration -ComputerName test1,test2 | where {-not($_.DefaultIPGateway) -and $_.IPEnabled -eq "True" }The IPEnabled is there so that only IPEnabled devices show up, otherwise loads of devices appear. Ensure that you respect Capitalization of True.
foreach ($nic in $nics) {$nic.SetGateways("10.168.20.254")}
test1 and test2 are two of my test servers, as long as the RPC server on those servers is responding and you have the right permissions this should work.
Annoyingly, there does not seem to be an easy way of backing out the change, after a bit of searching I found this rather unsatisfying method of enabling dhcp and then enabling static again:
foreach ($nic in $nics ) {
$ip=$nic.ipaddress[0]
$nic.enabledhcp()
$nic.enablestatic($ip,"255.0.0.0")
}
No comments:
Post a Comment