cxg518 发表于 2018-9-2 11:36:08

使用PowerShell修改Server20102R2系统配置

  #请手动更改IP地址和计算机名
  #更改IP地址
  $wmi = Get-WmiObject win32_networkadapterconfiguration -filter "ipenabled = 'true'"
  $wmi.EnableStatic("192.168.88.25", "255.255.255.0")
  $wmi.SetGateways("192.168.88.88")
  $wmi.SetDNSServerSearchOrder("192.168.88.11")
  #关闭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
  #更改计算机名并加域
  Add-Computer -NewName s25 -DomainName fymint.com -Credential fymint\administrator
  #关闭防火墙
  Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled false

页: [1]
查看完整版本: 使用PowerShell修改Server20102R2系统配置