码迷,mamicode.com
首页 > 其他好文 > 详细

更改计算机名称

时间:2014-10-09 00:45:27      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   for   sp   div   

 

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

更改计算机名称

标签:style   blog   http   color   io   ar   for   sp   div   

原文地址:http://www.cnblogs.com/dreamer-fish/p/4011340.html

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