> 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/ar/active-directory/enumeration/local-machine-enumeration.md).

# جرد الجهاز المحلي

### المعلومات الأساسية عن المستخدم والجهاز

عرض اسم المستخدم الحالي:

```powershell
$env:Username
```

عرض نطاق المستخدم:

```powershell
$env:UserDomain
```

عرض اسم الجهاز:

```powershell
$env:ComputerName
```

تساعد هذه الأوامر على تحديد بسرعة:

* المستخدم الذي نعمل معه;
* الجهاز الذي نحن عليه;
* النطاق أو مجموعة العمل التي أنت متصل بها.

### استعراض المجموعات المحلية

باستخدام PowerView:

```powershell
Get-NetLocalGroup
```

باستخدام PowerShell الأصلي:

```powershell
Get-LocalGroup
```

تعرض هذه الأوامر المجموعات المحلية للجهاز، على سبيل المثال:

* `Administrators`
* `المستخدمين`
* `مستخدمو سطح المكتب البعيد`
* `الضيوف`

### عرض أعضاء مجموعة المسؤولين

باستخدام PowerView:

```powershell
Get-NetLocalGroupMember -Groupname Administrators | Select-Object MemberName, IsGroup, IsDomain
```

باستخدام PowerShell الأصلي:

```powershell
Get-LocalGroupMember -Group Administrators
```

هذه الخطوة مهمة لتحديد:

* المسؤولين المحليين;
* مجموعات النطاق المضافة محليًا;
* المستخدمين ذوي الامتيازات المرتفعة على الجهاز.

### عرض المجموعات التي ينتمي إليها مستخدم

باستخدام PowerView:

```powershell
Get-NetGroup -UserName "user1" | select name
```

يتيح لك هذا معرفة المجموعات التي ينتمي إليها مستخدم معين.

مثال مهم:

* تحقق مما إذا كان `user1` ينتمي إلى مجموعة ذات امتيازات;
* تحديد المجموعات المهمة مثل `Administrators`, `RDPUsers`, `المديرين التنفيذيين`، إلخ.


---

# 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/ar/active-directory/enumeration/local-machine-enumeration.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.
