> For the complete documentation index, see [llms.txt](https://osdcatalog.osdeploy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osdcatalog.osdeploy.com/module/install-and-update.md).

# Install and Update

## Install OSDCatalog

The **OSDCatalog** PowerShell Module is installed from the **PowerShell Gallery**.  Use the following commands in PowerShell

```
Install-Module OSDCatalog
Import-Module OSDCatalog -Force
```

## Update OSDCatalog

The easiest way to Update the **OSDCatalog** PowerShell Module is with the following **PowerShell** command

```
Update-ModuleOSDCatalog
```

This will remove previous versions of **OSDDrivers**, and install the latest version

You can also use the following commands

```
Uninstall-Module OSDCatalog -AllVersions -Force
Install-Module OSDCatalog
Import-Module OSDCatalog -Force
```
