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

使用PowerShell修改Server20102R2系统配置

时间:2015-06-11 00:22:46      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:microsoft   ip地址   windows   防火墙   计算机   

#更改IP地址

$wmi = Get-WmiObject win32_networkadapterconfiguration -filter "ipenabled = ‘true‘"

$wmi.EnableStatic("192.168.88.12", "255.255.255.0")

$wmi.SetGateways("192.168.88.88")

$wmi.SetDNSServerSearchOrder("192.168.88.11")

#更改计算机名并加域

Add-Computer -NewName s12 -DomainName fymint.com -Credential fymint\administrator


#关闭防火墙

Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled false

#关闭UAC

Set-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "ConsentPromptBehaviorAdmin" -Value 00000000

关闭IE ESC

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}" -Name "IsInstalled" -Value 0

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}" -Name "IsInstalled" -Value 0

#仅检查更新

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" -Name "AUOptions" -Value 2

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" -Name "CachedAUOptions" -Value 2


本文出自 “fymint” 博客,请务必保留此出处http://fymint.blog.51cto.com/10204722/1660570

使用PowerShell修改Server20102R2系统配置

标签:microsoft   ip地址   windows   防火墙   计算机   

原文地址:http://fymint.blog.51cto.com/10204722/1660570

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