Disable-WssBackupPolicy
Disables and removes a scheduled server backup policy.
Disable-WssBackupPolicy
[-BackupPolicy] <ScheduledBackupPolicy>
[-Force]
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
The Disable-WssBackupPolicy cmdlet disables and removes a scheduled server backup policy. When you disable a scheduled server backup policy, the scheduled daily backups in the backup policy do not run.
PS C:\>$ContosoBUPolicy25 = Get-WssBackupPolicy
PS C:\> Disable-WssBackupPolicy -BackupPolicy $ContosoBUPolicy25
This example disables and removes a scheduled server backup policy.
The first command gets the backup policy for the computer and stores the result in the $ContosoBUPolicy25 variable
The second command disables and removes the backup policy stored in $ContosoBUPolicy25.
Specifies the scheduled backup policy to disable and remove.
Type: | ScheduledBackupPolicy |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Forces the command to run without asking for user confirmation.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Indicates that the cmdlet creates an object that you can use in a pipeline. By default, this cmdlet does not generate any output.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Microsoft.WindowsServerSolutions.DataProtection.ServerBackup.ObjectModel.ScheduledBackupPolicy
This command returns the current backup policy after the operation if you specify the PassThru parameter.