> For the complete documentation index, see [llms.txt](https://docs.poshtools.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.poshtools.com/open-source-tools/psmsi/installation.md).

# Installation

PSMSI is distributed through the PowerShell Gallery.

```powershell
Install-Module PSMSI
```

To install without administrator permissions, use the current-user scope.

```powershell
Install-Module PSMSI -Scope CurrentUser
```

## Update

```powershell
Update-Module PSMSI
```

## Verify Installation

```powershell
Import-Module PSMSI
Get-Command -Module PSMSI
```
