首页 > 代码库 > 更改计算机名称

更改计算机名称

 

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

from:http://www.pstips.net/powershell-rename-computer.html

更改计算机名称