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

# Install and Update

## Install OSDSoftware

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

```
Install-Module OSDSoftware
Import-Module OSDSoftware -Force
```

## Update OSDSoftware

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

```
Update-ModuleOSDSoftware
```

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

You can also use the following commands

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