0

从远程服务器访问角色和功能。

我尝试使用以下 PowerShell 脚本从远程服务器获取角色和功能。

Get-WmiObject -Computer "serverName" -query 'select * from Win32_ServerFeature'

但问题是我无法识别其他详细信息,例如集合中的给定对象是功能还是角色。请问有什么帮助吗?

4

1 回答 1

0

Get-WindowsFeature -ComputerName最后,我通过使用where i can filterfeaturetype并获得远程机器的角色和功能的单独结果找到了另一种选择。

例如:

Get-WindowsFeature -ComputerName $ServerName | Where-Object {($_.InstallState -eq “installed”) -and ($_.FeatureType -eq “Role Service”)}
于 2019-03-20T15:54:37.773 回答