Active-Directory

如何從 AWS Directory Service 檢索域電腦的詳細資訊?

  • June 4, 2015

我知道使用用於 powershell 的 AD 模組,我們可以檢索域電腦的詳細資訊並將它們導出為 csv。我的域在 AWS Directory Service 中,並且我在此域下有一台電腦。我試過Get-ADComputer了,但它顯示了這個錯誤:

Get-ADComputer : Unable to find a default server with Active Directory Web Services running.

是否有另一種方法可以檢索 AWS Directory Service 域中的域電腦列表?

AWS Directory Service 中的簡單 AD 不支持通過 PowerShell 進行通信。這是因為 Simple AD 基於 Samba4,而 Samba4 又不支持直接通過 PowerShell 進行通信。

如另一個執行緒中所述,您可以使用 AWS API 執行一些基本操作,例如描述您目前在 AWS 中從 PowerShell cmdlet 執行的目錄,但您實際上無法查詢目錄中的電腦。

您必須使用不同的目錄管理工具來管理您的 Simple AD。您將在 AWS Directory Service 的文件中找到有關如何使用其他工具管理目錄的更多資訊。http://docs.aws.amazon.com/directoryservice/latest/adminguide/directory_management.html

引用自:https://serverfault.com/questions/694656