PowerShell Get-ADUser无法返回数据

时间:2017-11-15 18:01:42

标签: powershell

我在PowerShell工作,我的笔记本电脑上安装了RSAT。我从笔记本电脑上运行以下命令:

$attributes = @("sAMAccountName","userAccountControl"); 

Get-ADUser -Filter * -Properties $attributes -Server "10.111.25.6" |
Measure-Object; 

我收到以下错误消息:

  
      
  • CategoryInfo:ResourceUnavailable:(:) [Get-ADUser],ADServerDownException      
        
    • FullyQualifiedErrorId:无法联系服务器。这可能是因为此服务器不存在,它当前已关闭,或者它   没有Active Directory Web服务   运行。,Microsoft.ActiveDirectory.Management.Commands.GetADUser
    •   
  •   

奇怪的是,我可以使用csvde实用程序从该服务器中提取数据。因此,给定的服务器确实存在并且没有被关闭。我最好的猜测是它没有运行Active Directory Web服务。但是,我不知道如何确定这一点。如何解决此Get-ADUser问题?

0 个答案:

没有答案