> 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/ru/active-directory/enumeration/powerview.md).

# PowerView

{% embed url="<https://github.com/PowerShellMafia/PowerSploit>" %}

### Назначение PowerView

**PowerView** — это модуль PowerShell, используемый для перечисления Active Directory.

В частности, он позволяет получить информацию о:

* пользователях домена;
* группах;
* компьютерах;
* активных сеансах;
* сетевых ресурсах;
* GPO;
* ACL;
* контроллерах домена;
* отношениях между лесом и доменом.

В этой лабораторной работе:

* на `WS01`, мы используем **PowerView**;
* на `WS02`, мы вместо этого используем встроенные команды PowerShell или модуль Active Directory.

### Получение PowerView

Мы получаем следующий скрипт из **PowerSploit** проекта:

```bash
PowerSploit/Recon/PowerView.ps1
```

С Windows-машины вы можете скачать его с помощью:

```powershell
iwr -uri "http://172.16.0.2:8000/PowerView.ps1" -OutFile "PowerView.ps1"
```

### Проблема с Windows Defender

По умолчанию, **Windows Defender** может блокировать `PowerView.ps1`, поскольку он часто определяется как вредоносный инструмент.

В лабораторной среде вы можете добавить текущую папку в исключения.

Для запуска в PowerShell от имени администратора:

```powershell
Add-MpPreference -ExclusionPath (Get-Location).Path
```

Затем мы импортируем PowerView:

```powershell
. ./PowerView.ps1
```

Точка, за которой следует пробел, загружает функции скрипта в текущий сеанс PowerShell.

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


---

# 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/ru/active-directory/enumeration/powerview.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.
