--- title: "New-VBRSimpleRetentionPolicy" description: "Creates a retention policy for backup copy jobs that process backups stored on external repositories. Platform: VMware, Hyper-V Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet specifies a retenti" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrsimpleretentionpolicy.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Copy > Backup Copy Job of Amazon EC2 Instances > New-VBRSimpleRetentionPolicy" dateModified: "2026-08-19" --- # New-VBRSimpleRetentionPolicy ## Short Description Creates a retention policy for backup copy jobs that process backups stored on external repositories. **Platform**: VMware, Hyper-V **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRSimpleRetentionPolicy [-RestorePoints ] [] ``` ## Detailed Description This cmdlet specifies a retention policy for backup copy job that process backups stored on external repositories. Veeam Backup & Replication will keep regular backups on the target backup repository according to this policy. ::: note Run the [`New-VBRGFSRetentionPolicy`](new-vbrgfsretentionpolicy.md) cmdlet to create the GFS retention policy for backup copy jobs. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

RestorePoints

Specifies a number of restore points. Veeam Backup & Replication will keep the selected number of restore points on the target backup repository.

Int32

False

Named

False

`` 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 The cmdlet returns the `VBRSimpleRetentionPolicy` object that contains a retention policy for backup copy jobs that process backups stored on external repositories. ## Examples ::: example ### Creating Retention Policy for Backup Copy Job This command creates a retention policy for a backup copy job. The target backup repository will keep the last 5 restore points. ``` New-VBRSimpleRetentionPolicy -RestorePoints 5 ``` :::