分类: WINDOWS
2017-11-30 15:06:50
Nano Server 安装完成后只能进行远程管理。 其不具备本地登录的功能,亦不支持终端服务。但是,有多种选项可以来远程管理 Nano Server,包括 Windows PowerShell、Windows Management Instrumentation (WMI)、Windows 远程管理和紧急管理服务 (EMS)。
【正文】
若要使用 Windows PowerShell 远程控制管理 Nano Server,则需要将 Nano Server 的 IP 地址添加到受信任主机的管理计算机列表,将所使用的帐户添加到 Nano Server 的管理员,并启用 CredSSP(如果计划使用该功能)。
Set-Item WSMan:\localhost\Client\TrustedHosts "
$ip = "
$user = "$ip\Administrator"
Enter-PSSession -ComputerName $ip -Credential $user
若要停止远程会话,则使用此命令:Exit-PSSession
$ip = "
$ip\Administrator
$cim = New-CimSession -Credential $user -ComputerName $ip
Get-CimInstance -CimSession $cim -ClassName Win32_ComputerSystem | Format-List *
Get-CimInstance -CimSession $Cim -Query "SELECT * from Win32_Process WHERE name LIKE 'p%'"
默认情况下是无法连接到Nano Server的,需要我们开启Nano Server上的两类防火墙规则才可以:COM+网络访问(DCOM-In)和远程时间日志管理组中的所有规则。
关于Nano Server的管理方法除了以上笔者介绍的几种,还有很多方式例如通过 WinRM 使用 Windows PowerShell CIM 会话及基于 Web 的服务器管理工具等,大家可通过需求及使用习惯进行选择。