# Basic Commands

```
Kullanıcıları listele
net user

Belirli Bir Kullanıcıyı Llistele
net user {USERNAME}

Local kullanıcı ekleme
net user {username} {Password} /add

Local kullanıcı Silme
net user {username} /del

Parola Değiştirme
net user {username} {New_Password}

Local grupları listeleme
net localgroup

Local grup üyelerini listeleme
net localgroup {GRUP_NAME}

Kullanıcıyı bir local gruba dahil etme.
net localgroup {GRUP_NAME} {USERNAME} /add

Kullanıcıyı bir local grubtan silme
net localgroup {GRUP_NAME} {USERNAME} /del

--

Domain Kullanıcılarını Listele
net user /domain

Domaindeki kullanıcıyı detaylarını listele
net user {USERNAME} /domain

Domain kullanıcısının parolasını değiştirme
net user {USERNAME} {PASSWORD} /domain

Domain kullanıcısını silme
net user {USERNAME} {PASSWORD} /domain /del

Domain gruplarını listeleme
net group

Bir domain grubun kullanıcılarını listeleme
net group {DOMAIN_GRUP_NAME}

Domaine kullanıcı ekleme
net user {USERNAME} {PASSWORD} /domain /add

Bir kullanıcıyı Domain grubuna dahil etme
net group {DOMAIN_GRUP_NAME} {USERNAME} /add /domain

Domain grubundan kullanıcı silme
net group {DOMAIN_GRUP_NAME} {USERNAME} /del /domain
```


---

# Agent Instructions: 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:

```
GET https://security.musana.net/windows/basic-commands.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
