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

Hyper V server 2012 r2 常用的powershell命令

时间:2018-07-04 16:46:48      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:nsclient   pow   ipv6   注释   control   type   algo   nmp   fir   

Hyper V server 2012 r2 常用的powershell命令

? 获取网卡信息
Get-netadapter
Get-netipinterface


? 设置DNS地址
Set-DnsClientServerAddress -InterfaceAlias NIC NAME -ServerAddresses "1.1.1.1","2.2.2.2"
注释:NIC Name: 网卡名称, 1.1.1.1,2.2.2.2


? 网卡聚合NIC Teaming:
New-NetLbfoTeam –name AdminTeam –TeamMembers VM1,VM2,VM3 –TeamingMode SwitchIndependent –LoadBalancingAlgorithm HyperVPort
注释:AdminTeam: 给聚合的网卡取名, VM1/2/3:被聚合的网卡名称


? 禁用IPv6
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\services\TCPIP6\Parameters -Name DisabledComponents -PropertyType DWord -Value 0xffffffff


? 关闭防火墙
netsh advfirewall set allprofiles state off


? 重命名网卡
Rename-NetAdapter –name “old name” –NewName “”new_name“”


? 获取相关IP命令
Get-command –module nettcpip


? 查看/安装角色和特性
Get-windowsfeature
Install-windowsfeature


? 查看磁盘信息
Get-disk


? 查看服务
Get-service


? 查看系统信息
Systeminfo
Msinfo32


? 添加SNMP组件
Add SNMP - "Add-WindowsFeature -Name SNMP-Service -IncludeAllSubFeature -IncludeManagementTools"


? 查看补丁
Get-hotfix

Hyper V server 2012 r2 常用的powershell命令

标签:nsclient   pow   ipv6   注释   control   type   algo   nmp   fir   

原文地址:http://blog.51cto.com/snowlai/2136172

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