--- title: "Get-VBRCloudProvider" description: "Returns service providers. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License Requires a cloud provider license." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcloudprovider.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Service Provider > Get-VBRCloudProvider" dateModified: "2026-08-19" --- # Get-VBRCloudProvider ## Short Description Returns service providers. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License Requires a cloud provider license. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns service providers added to Veeam Backup & Replication. You can get the list of all existing service providers or search for instances directly by name or ID. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the array of the cloud provider IDs you want to get.

Accepts Guid[] or String[].

Guid[]

False

Named

True (ByPropertyName, ByValue)

Name

Specifies the array of the service provider names you want to get or search conditions.

String[]

False

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object [`VBRCloudProvider[]`](vbrcloudprovider.md) ## Examples ::: example ### Example 1. Getting All Cloud Service Providers This command returns all cloud service providers added to Veeam Backup & Replication. ``` Get-VBRCloudProvider ``` ::: ::: example ### Example 2. Getting Cloud Service Provider by IP Address This command looks for the cloud service provider with the `104.45.95.227` IP address. ``` Get-VBRCloudProvider -Name "104.45.95.227" ``` :::