码迷,mamicode.com
首页 > 系统相关 > 详细

powershell修改主机名和IP

时间:2018-12-20 01:07:06      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:put   als   get   obj   cti   ESS   rsh   dom   power   

Function Rename-Computer( $NewName,$AutoRestart=$false )
{
$computer=Get-WMIObject Win32_ComputerSystem
$computer.Rename( $NewName ) | out-null
if($AutoRestart) { Restart-Computer -Force }
}


$prefx="192.168.0."
$ipaddress = 7..9
Foreach ($sn in $ipaddress)
{
Rename-Computer ZSSH_$ip
netsh interface ip set address "无线网络连接" static 192.168.0.$sn 255.255.255.0 192.168.0.1
netsh interface ip set dns "无线网络连接" static 192.168.0.1
netsh interface ip add dns "无线网络连接" 8.8.4.4
#add-computer -domain "域名" -cred "域名\授权用户" -passthru
$IP=$prefx+$sn
Write-Output "$sn,$IP" >> D:\ServerIPList.txt

}

powershell修改主机名和IP

标签:put   als   get   obj   cti   ESS   rsh   dom   power   

原文地址:https://www.cnblogs.com/share-wu/p/10147086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!