> For the complete documentation index, see [llms.txt](https://book.ice-wzl.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://book.ice-wzl.xyz/windows-priv-esc/powershell-constrained-language-mode.md).

# Powershell Constrained Language Mode

* Enumerate which language mode powershell is currently in

```
$ExecutionContext.SessionState.LanguageMode
```

* Attempt to change from constrained language mode to full language mode

```
$ExecutionContext.SessionState.LanguageMode=[System.Management.Automation.PSLanguageMode]::FullLanguage
```
