--- title: "Add-VBOBackupApplication" description: "This cmdlet adds backup application settings to an application pool. This cmdlet will run only for Microsoft organizations that are added to the Veeam Backup for Microsoft 365 infrastructure using modern app-only authentication method." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/add-vbobackupapplication.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Organizations Management > Organization Connection Settings > Add-VBOBackupApplication" dateModified: "2026-08-21" --- # Add-VBOBackupApplication ## Short Description Adds backup application settings to an application pool. ## Syntax ``` Add-VBOBackupApplication -Organization -BackupApplications [] ``` ## Detailed Description This cmdlet adds backup application settings to an application pool. ::: important This cmdlet will run only for Microsoft organizations that are added to the Veeam Backup for Microsoft 365 infrastructure using modern app-only authentication method. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

BackupApplications

Specifies an array of backup applications. The cmdlet will add these backup applications to the Microsoft organization.

Accepts the VBOBackupApplication[] object.

To create this object, run the New-VBOBackupApplication cmdlet.

VBOBackupApplication[]

True

Named

True (ByValue)

Organization

Specifies a Microsoft organization. The cmdlet will add backup application settings to the specified Microsoft organization.

Accepts the VBOOrganization object.

To get this object, run the Get-VBOOrganization cmdlet.

VBOOrganization

True

Named

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Output Object The cmdlet returns the [`VBOBackupApplication`](vbobackupapplication.md) object that contains backup application settings that are added to Microsoft organizations. ## Examples ::: example ### Adding Backup Application to Microsoft Organization This example shows how to add a backup application to an application pool of Microsoft organization. ``` $securepassword = Read-Host "Enter your password" -AsSecureString Enter your password: ********** $org = Get-VBOOrganization $app = Get-VBOApplication -Organization $org -Name "New_App" $newApp = New-VBOBackupApplication -Application $app -ApplicationCertificatePath "C:\certificate\cert.pfx" -ApplicationCertificatePassword $securepassword Add-VBOBackupApplication -Organization $org -BackupApplications $newApp ``` Perform the following steps: 1. Specify the secure password: 1. Run the [`Read-Host`](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/read-host) cmdlet. Specify the message that the console will display as a prompt. Provide the `AsSecureString` parameter. Save the result to the `$securepassword` variable. 2. Enter the password. 2. Get an application: 1. Run the [`Get-VBOOrganization`](get-vboorganization.md) cmdlet. Save the result to the `$org` variable. 2. Run the [`Get-VBOApplication`](get-vboapplication.md) cmdlet. Set the `$org` variable as the `Organization` parameter value. Specify the `Name` parameter value. Save the result to the `$app` variable. 3. Run the [`New-VBOBackupApplication`](new-vbobackupapplication.md) cmdlet. Specify the `Application`, `ApplicationCertificatePath` and `ApplicationCertificatePassword` parameters. Save the result to the `$newApp` variable. 4. Run the `Add-VBOBackupApplication` cmdlet. Set the `$org` variable as the `Organization` parameter value. Set the `$newApp` variable as the `BackupApplications` parameter value. ::: ## Related Commands - [``Read-Host``](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/read-host) - [`Get-VBOOrganization`](get-vboorganization.md) - [`Get-VBOApplication`](get-vboapplication.md) - [`New-VBOBackupApplication`](new-vbobackupapplication.md)