> For the complete documentation index, see [llms.txt](https://cheatsheet.mrw0l05zyn.cl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cheatsheet.mrw0l05zyn.cl/microsoft-windows/simbolo-del-sistema-cmd.md).

# Símbolo del sistema (cmd)

Privilegios de archivo.

```shell
icacls <file>
```

Visualizar archivos ocultos.

```shell
dir /a:h
```

Ejecutar proceso en background.

```shell
start /B <file.exe>
```

Ejecutar proceso como un usuario en particular.

```shell
runas /user:<user> "C:\<path>\<file.exe>"
```

Vaciar la caché de resolución de DNS (Domain Name System).

```shell
ipconfig /flushdns
```

Eliminación de directorio, incluidos todos los archivos y subdirectorios anidados (recursivamente).

```shell
rmdir /s <directory>
```
