# Commands

These are the commands that I use to generate the XML files ... they are saved locally and added to **OSDBuilder** and **OSDUpdate**

## Windows Catalogs (Version 10.0)

```
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows 10"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows 10 1903"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows 10 Dynamic Update"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows Server 2016"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows Server 2019"
```

## Windows Catalogs (Legacy)

```
Import-Module OSDCatalog -Force

New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows 7" -GridViewGetUpdates -GridViewResults
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows Server 2012 R2" -GridViewGetUpdates -GridViewResults
```

## Windows Addons (version 10.0)

```
Import-Module OSDCatalog -Force

New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows 10 Feature On Demand"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows 10 Language Packs"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Windows 10 Language Interface Packs"
```

## Office Catalogs

```
Import-Module OSDCatalog -Force
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Office 2016 32-Bit"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Office 2016 64-Bit"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Office 2013 32-Bit"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Office 2013 64-Bit"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Office 2010 32-Bit"
New-OSDCatalog -WsusServer WSUS -SaveDirectory $env:TEMP -OSDeployCatalog "Office 2010 64-Bit"
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://osdcatalog.osdeploy.com/docs/commands.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
