> 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/functions/get-osdsoftware.md).

# Get-OSDSoftware

## Function <a href="#function" id="function"></a>

```
<#
.SYNOPSIS
Download software related to OS Deployment

.DESCRIPTION
Download software related to OS Deployment, including the ADK and MDT

.LINK
https://osdsoftware.osdeploy.com/module/functions/get-osdsoftware

.PARAMETER Name
Name of the software to download

.PARAMETER DownloadPath
This is the path to download the updates

.EXAMPLE
Get-OSDSoftware -Name 'Google Chrome Enterprise x64' -DownloadPath C:\Temp
Downloads googlechromestandaloneenterprise64.msi to C:\Temp
Alternatively, use the shorter command line
OSDSoftware 'Google Chrome Enterprise x64' C:\Temp
#>
```

The Name parameter is the Software to download. In PowerShell ISE you can select from a list‌

![](https://4199790614-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LmFm0asyQOqJGAeX83z%2F-LmFnNoCCvTU-wialnuO%2F-LmFnraMOjMzwl5B4hXu%2Fimage.png?alt=media\&token=5c9fa0d0-425f-45d4-8528-e84b3706cdb9)

In PowerShell, a Control+Space will allow you to select‌

![](https://4199790614-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LmFm0asyQOqJGAeX83z%2F-LmFnNoCCvTU-wialnuO%2F-LmFntxf1L7YPBL2giu9%2Fimage.png?alt=media\&token=be11feb0-dd1d-41ee-a1c2-f48f0149efca)

Software will be downloaded automatically‌

![](https://4199790614-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LmFm0asyQOqJGAeX83z%2F-LmFnNoCCvTU-wialnuO%2F-LmFnvbwqfqinZKZlvbb%2Fimage.png?alt=media\&token=ae4941f9-97c9-44f3-9bd9-e2835f32b20a)

Saved to the Desktop by default‌

![](https://4199790614-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LmFm0asyQOqJGAeX83z%2F-LmFnNoCCvTU-wialnuO%2F-LmFnxKN0gmkQQ-S9Ynm%2Fimage.png?alt=media\&token=64e5db8c-18d5-40f3-9efc-c5b3b6f9b064)

## Get-OSDSoftware -DownloadPath <a href="#get-osdsoftware-downloadpath" id="get-osdsoftware-downloadpath"></a>

‌This allows you to specify the location for the download‌

## Shorthand <a href="#shorthand" id="shorthand"></a>

There is no need to use Get-. Additionally the parameters are positional. To download Google Chrome to C:\Temp, use the following command

```
OSDSoftware 'Google Chrome Enterprise x64' 'C:\Temp\Google'
```

‌

Google Chrome Enterprise will be downloaded to C:\Temp\Google with the directories being created if necessary

![](https://4199790614-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LmFm0asyQOqJGAeX83z%2F-LmFnNoCCvTU-wialnuO%2F-LmFnzBadL_aoLhH3waw%2Fimage.png?alt=media\&token=711830ac-3761-4700-845d-4677c8c863b7)
