# Marketplace

The [Universal Dashboard Marketplace](https://marketplace.universaldashboard.io/) is a PowerShell Gallery module aggregator. It synchronizes with the PowerShell Gallery on an hourly basis to find modules that can be used with Universal Dashboard.

## Installing Components from the Gallery

### Automatic Install from the Marketplace

Within PowerShell Universal, you can access the Universal Dashboard Marketplace by navigating to the Dashboards page and clicking the Marketplace button in the top right.

![](https://3638551245-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M6jY7sXTmhiAIMGYw_m-887967055%2Fuploads%2FGzDYc0XdON5gAvuFoi0A%2Fimage.png?alt=media\&token=c6435938-cedc-46ea-846d-931ce8deb290)

Once installed, the component will be listed on the Dashboard Components page. You can access this by clicking Dashboards and then the Components button in the top right.

![](https://3638551245-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M6jY7sXTmhiAIMGYw_m-887967055%2Fuploads%2FkzOaOQsm4MfQULfbKYnW%2Fimage.png?alt=media\&token=1c6254dd-8755-4beb-9e20-90e98978cbff)

To add the component to a dashboard, navigate to the Dashboard Details and then click the Add Component button.&#x20;

![](https://3638551245-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M6jY7sXTmhiAIMGYw_m-887967055%2Fuploads%2FPXGZbyMSLIZds94YLoUF%2Fimage.png?alt=media\&token=3c51be2d-dbb0-4745-ad6f-d21ce198d53c)

The drawer will show which components are already added and which components can be added. Click the add button to activate the component for the dashboard.

![](https://3638551245-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M6jY7sXTmhiAIMGYw_m-887967055%2Fuploads%2F9fIgMNOUxXSXGXHqVy6F%2Fimage.png?alt=media\&token=43ae2178-9da3-4438-89ce-43e0fa4d5019)

### Manual Install from the PowerShell Gallery

You can install any of the components from the Marketplace by using the `Install-Module` or `Save-Module` cmdlets provided by `PowerShellGet`. Since the components are just listed on the PowerShell Gallery, you'll be able to use their module name during install.

```
Install-Module UniversalDashboard.Helmet
```

Depending on how the components were installed, you may need to import the module in your dashboard file.

```
import-Module UniversalDashboard.Helmet
```

## Publishing to the Universal Dashboard Marketplace

You can follow the directions on the [Building Custom Components](https://docs.powershelluniversal.com/master-1/userinterfaces/components/building-custom-components#publishing-to-the-marketplace) page on how to publish components to the Universal Dashboard Marketplace.
