> For the complete documentation index, see [llms.txt](https://hackzzz.gitbook.io/welcome/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hackzzz.gitbook.io/welcome/everything-about-and-notes/windows-and-active-directory/windows-basic-commands/bypass-windows-admin-prompt.md).

# Bypass Windows Admin Prompt

* Using the following batch script, the program you are trying to install will be installed as your current user. **(Without admin privileges)**

```batch
Set __COMPAT_LAYER=RunAsInvoker
Start "program_name".exe
```
