> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/zh/active-directory/enumeration/active-directory-powershell-module.md).

# Active Directory PowerShell 模块

### 目标

Active Directory 模块允许你使用如下命令：

{% code overflow="wrap" %}

```powershell
Get-ADDomain
Get-ADUser
Get-ADComputer
Get-ADDomainController
```

{% endcode %}

在域控制器上，此模块通常默认可用。

在传统 Windows 10 机器上，它通常未安装。

<figure><img src="/files/3f4a692d469f85bd25bd42138c120d98fc930c19" alt=""><figcaption></figcaption></figure>

### 加载域信息

在域控制器上：

```bash
Get-ADDomain
```

此命令返回如下重要信息：

* 域名；
* 域的 SID；
* 域的功能模式；
* 林；
* 主域控制器；
* 基础结构主控器；
* AD 配置信息。

### 在没有 RSAT 的机器上使用该模块

可以从域控制器获取该 DLL：

{% code overflow="wrap" %}

```bash
C:/Windows/Microsoft.Net/assembly/GAC_64/Microsoft.ActiveDirectory.Management/v4.0_10.0.0.0__31bf3856ad364e35/Microsoft.ActiveDirectory.Management.dll
```

{% endcode %}

然后我们将其复制到 `WS02`，然后导入它：

{% code overflow="wrap" %}

```powershell
Import-Module ./Microsoft.ActiveDirectory.Management.dll
```

{% endcode %}

然后我们可以测试：

{% code overflow="wrap" %}

```powershell
Get-ADDomain
```

{% endcode %}

<figure><img src="/files/ef99eabdb800877b3de3e44ab8244305898c707e" alt=""><figcaption></figcaption></figure>

### 使用 PowerView 的替代方法

在没有 Active Directory 模块的情况下，PowerView 提供等效命令。

获取域信息：

{% code overflow="wrap" %}

```powershell
Get-NetDomain
```

{% endcode %}

获取域策略：

{% code overflow="wrap" %}

```powershell
Get-DomainPolicy
```

{% endcode %}

显示 `SystemAccess` 部分：

{% code overflow="wrap" %}

```powershell
(Get-DomainPolicy)."SystemAccess"
```

{% endcode %}

这使你能够获取如下信息：

* 密码策略；
* 账户锁定；
* 密码的最长有效期；
* 域安全设置。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/zh/active-directory/enumeration/active-directory-powershell-module.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
