Auf Englisch lesen

Freigeben über


Remove-WBBackupSet

Remove-WBBackupSet

Deletes backups from a target catalog, a system catalog, or both.

Syntax

Parameter Set: Default
Remove-WBBackupSet [[-BackupSet] <WBBackupSet[]> ] [[-KeepVersions] <Int32> ] [[-DeleteOldest]] [[-MachineName] <String> ] [[-Force]] [ <CommonParameters>]

Parameter Set: NetworkWithPSCred
Remove-WBBackupSet [[-BackupSet] <WBBackupSet[]> ] [[-KeepVersions] <Int32> ] [[-DeleteOldest]] [-NetworkPath] <String> [[-Credential] <PSCredential> ] [[-NonInheritAcl]] [[-MachineName] <String> ] [[-Force]] [ <CommonParameters>]

Parameter Set: VolumePath
Remove-WBBackupSet [[-BackupSet] <WBBackupSet[]> ] [[-KeepVersions] <Int32> ] [[-DeleteOldest]] [-VolumePath] <String> [[-MachineName] <String> ] [[-Force]] [ <CommonParameters>]

Parameter Set: WBBackupTarget
Remove-WBBackupSet [[-BackupSet] <WBBackupSet[]> ] [[-KeepVersions] <Int32> ] [[-DeleteOldest]] [-BackupTarget] <WBBackupTarget> [[-MachineName] <String> ] [[-Force]] [ <CommonParameters>]

Detaillierte Beschreibung

The Remove-WBBackupSet cmdlet deletes a set of backups from a target catalog, a system catalog, or both.

Parameter

-BackupSet<WBBackupSet[]>

Specifies an array of backup set objects that determine which backup or which backup sets to delete. You can specify one backup or an array of backup sets.

Aliasse

Keiner

Erforderlich?

false

Position?

1

Standardwert

Keiner

Pipelineeingaben akzeptieren?

True (ByValue)

Platzhalterzeichen akzeptieren?

false

-BackupTarget<WBBackupTarget>

Specifies a backup target object that indicates the storage location with the backups that you want to delete.

Use this parameter to delete backups from computers other than the local computer. The cmdlet deletes the backup sets from the catalog on the computer that you specify in this parameter and from the system catalog of the local computer. These locations can be locally attached disk drives or remote shared folders.

Aliasse

Keiner

Erforderlich?

true

Position?

4

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-Credential<PSCredential>

Specifies a PSCredential object that contains the username and password for a user account that has access permissions for the location that stores backups.

Aliasse

Keiner

Erforderlich?

false

Position?

5

Standardwert

Keiner

Pipelineeingaben akzeptieren?

True (ByValue)

Platzhalterzeichen akzeptieren?

false

-DeleteOldest

Indicates that the cmdlet deletes the oldest backup in the set.

Aliasse

Keiner

Erforderlich?

false

Position?

3

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-Force

Indicates that the cmdlet removes the backup set without prompting you for confirmation. By default, the cmdlet prompts you for confirmation before it proceeds.

Aliasse

Keiner

Erforderlich?

false

Position?

8

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-KeepVersions<Int32>

Specifies the number of the most recent backups to keep on the backup target. The cmdlet deletes backups over this number from the target.

If you specify this parameter along with the BackupTarget and MachineName parameters, the cmdlet examines the target location on the specified computer for backups to remove.

Aliasse

Keiner

Erforderlich?

false

Position?

2

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-MachineName<String>

Specifies the name of the computer for which you want to delete backups.

Use this parameter when you specify the BackupTarget parameter or when multiple computers store backups in the same location.

Aliasse

Keiner

Erforderlich?

false

Position?

7

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-NetworkPath<String>

Specifies the path to the remote shared folder from which the cmdlet deletes backups.

Aliasse

Keiner

Erforderlich?

true

Position?

4

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-NonInheritAcl

Do not use. This parameter is not implemented in this version of the module.

Aliasse

Keiner

Erforderlich?

false

Position?

6

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-VolumePath<String>

Specifies the drive letter of the volume where the cmdlet stores backups.

Aliasse

Keiner

Erforderlich?

true

Position?

4

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

<CommonParameters>

Dieses Cmdlet unterstützt die allgemeinen Parameter: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, -OutVariable. Weitere Informationen finden Sie unter about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Eingaben

Der Eingabetyp ist der Typ der Objekte, die über die Pipeline an das Cmdlet übergeben werden können.

  • Windows.ServerBackup.Commands.WBBackupSet,System.Int32,System.Management.Automation.SwitchParameter, Windows.ServerBackup.Commands.WBBackupTarget, System.String, System.Management.Automation.PSCredential

Ausgaben

Der Ausgabetyp ist der Typ der Objekte, die vom Cmdlet ausgegeben werden.

  • Windows.ServerBackup.Commands.WBBackupSet

Beispiele

Example 1: Remove oldest backup set

This command deletes the oldest backup of the computer that has its name in the $MachineName variable from the backup target. Because the command includes the Force parameter, it does not ask for confirmation of the deletion.

PS C:\> $Ret = Remove-WBBackupSet -DeleteOldest -BackupTarget $WB_BackupTarget -MachineName $MachineName -Force

Verwandte Themen

Get-WBBackupSet