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

# Install and Update

## Install OSDDrivers

The **OSDDrivers** PowerShell Module is installed from the [**PowerShell Gallery**](https://www.powershellgallery.com/packages/OSDDrivers).  Use the following commands in PowerShell

```
Install-Module OSDDrivers
Import-Module OSDDrivers -Force
```

## Update OSDDrivers

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

```
Update-ModuleOSDDrivers
```

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

You can also use the following commands

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