我们的网络从 192.xyz 移至 10.uvw,我不想手动重新设置 250 台计算机的地址。我的想法是使用 powershell 脚本(针对单台 PC 进行测试):
$oldIp='192.168.100.1'
$newIp='10.11.12.13'
$newGw='10.11.12.254'
$newLen='24'
$adminCred = Get-Credential -UserName ourdomain\myAdminAccount -Message 'Enter Password'
ForEach ($Adapter in (Get-WmiObject Win32_NetworkAdapter -Filter "NetEnabled='True'" -ComputerName $oldIp )){
$wmiQuery = Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter "Index = '$($Adapter.Index)'" -ComputerName $oldIp
if( $wmiQuery.IPAddress -contains $oldIp ){
$pcName=[system.net.dns]::gethostentry($lavIp) | Select-Object -ExpandProperty HostName
$cimSess=New-CimSession -SkipTestConnection -Credential $adminCred -ComputerName $pcName
New-NetIPAddress -CimSession $cimSess -InterfaceIndex $Adapter.Index -IPAddress $newIp -PrefixLength $newLen -DefaultGateway $newGw
}else{
## do not touch this nic
}
}
如果所有 NIC 都获得了新 IP,则使用 删除旧 IP Remove-NetIPAddress
。
目前,它$cimSess
没有按预期工作,但我的主要问题是:我是否走在正确的轨道上,或者有没有更好/更快/更简单/...的方法来做到这一点?还是我完全错了,错过了什么?
答案1
您应该使用 DHCP 为您的网络配置 IP 地址。然后所有计算机都启用 DHCP,并从 DHCP 服务器获取正确的 IP 地址。