external help file: QuestSoftware.RecoveryManager.AD.PowerShell.dll-Help.xml
Module Name: Quest.RecoveryManager.AD.PowerShell
online version:
Removes the secure storage server.
Remove-RMADStorageServer [-IgnoreReadOnly] [-Name] <String> [-WhatIf] [-Confirm] [<CommonParameters>]
Remove-RMADStorageServer [-IgnoreReadOnly] [-Server] <StorageServer> [-WhatIf] [-Confirm] [<CommonParameters>]
Removes currently registered secure storage servers.
PS C:\> Remove-RMADStorageServer -Name "backupsrv01.acme.test"
Removes the specified secure storage server.
PS C:\> Get-RMADStorageServer | Remove-RMADStorageServer
Removes all registered secure storage servers.
Allows you to perform the action in a console currently performing full replication.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the name of the registered storage server (DNS name or IP address).
Type: String
Parameter Sets: Name
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Specifies the secure storage server object.
Type: StorageServer
Parameter Sets: Server
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Shows what happens when you run the cmdlet. The cmdlet does not actually run.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
external help file: Quest.RecoveryManager.AD.PowerShell.SecureStorage.psm1-Help.xml
Module Name: Quest.RecoveryManager.AD.PowerShell.SecureStorage
online version:
Removes secure storage server exception
Remove-RMADStorageServerException [[-Name] <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
Removes existing secure storage server exception by given name.
PS C:\> Remove-RMADStorageServerException -Name "Ping"
Removes secure storage exception with name 'Ping'
Forces the command to complete without confirmation.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
Name of the exception
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Shows what would happen if the cmdlet runs.
The cmdlet is not run.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
external help file: QuestSoftware.RecoveryManager.AD.PowerShell.dll-Help.xml
Module Name: Quest.RecoveryManager.AD.PowerShell
online version:
Allows you to delete components (data) unpacked from specified backups.
Remove-RMADUnpackedComponent [-InputObject] <BackupInfo[]> [-IgnoreReadOnly] [-WhatIf] [-Confirm]
[<CommonParameters>]
Remove-RMADUnpackedComponent [-Id] <Int32[]> [-IgnoreReadOnly] [-WhatIf] [-Confirm] [<CommonParameters>]
Allows you to delete all components (data) unpacked from specified backups and saved in the Recovery Manager cache for further use.
PS C:\> Remove-RMADUnpackedComponent (Get-RMADBackup | where{$_.IsUnpacked -eq "true"})
Deletes all components unpacked from backups created with Recovery Manager for Active Directory.
Specifies the IDs of the backups whose unpacked components you want to delete. If you use this parameter, omit the InputObject parameter of this cmdlet.
Type: Int32[]
Parameter Sets: Id
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Allows you to perform the action in a console currently performing full replication.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
Specifies the IBackupInfo objects representing the backups whose unpacked components you want to delete. If you use this parameter, omit the Id parameter of this cmdlet.
Type: BackupInfo[]
Parameter Sets: Instance
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Prompts for confirmation before executing the command.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
Describes what would happen if you ran the command without actually running the command.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
external help file: QuestSoftware.RecoveryManager.AD.PowerShell.dll-Help.xml
Module Name: Quest.RecoveryManager.AD.PowerShell
online version:
Renames a computer collection.
Rename-RMADCollection [-Name] <String> [-Value] <String> [-PassThru] [-IgnoreReadOnly] [-WhatIf] [-Confirm]
[<CommonParameters>]
Rename-RMADCollection [-InputObject] <ComputerCollection> [-Value] <String> [-PassThru] [-IgnoreReadOnly]
[-WhatIf] [-Confirm] [<CommonParameters>]
Rename-RMADCollection [-Id] <Int32> [-Value] <String> [-PassThru] [-IgnoreReadOnly] [-WhatIf] [-Confirm]
[<CommonParameters>]
Renames a computer collection with the name you specify.
PS C:\> Rename-RMADCollection -Name "New Computer Collection" -Value Collection1
This command renames the computer collection named "New Computer Collection" to "Collection1".
PS C:\> $c = Get-RMADCollection -Name "Collection1"
C:\PS>Rename-RMADCollection -InputObject $c -Value "Collection2"
The Get-RMADCollection cmdlet retrieves the computer collection named Collection1. This collection is then passed to the Rename-RMADCollection cmdlet that renames it to Collection2.
Specifies the identifier of the computer collection you want to rename.
Type: Int32
Parameter Sets: Id
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Allows you to perform the action in a console currently performing full replication.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
Renames the computer collection represented by the specified collection objects. Specify the name of the variable that contains the objects or type a command or expression that gets the objects.
Type: ComputerCollection
Parameter Sets: InputObject
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Specifies the name of the computer collection to be renamed.
Type: String
Parameter Sets: Name
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
Passes the renamed collection along the pipeline. If this parameter is omitted, the renamed collection is not passed along the pipeline.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
Specifies the new name you want to assign to the computer collection.
Type: String
Parameter Sets: (All)
Aliases: NewName
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
Prompts for a confirmation before executing the command.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
Describes what would happen if you ran the command without actually running the command.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
© 2024 Quest Software Inc. ALL RIGHTS RESERVED. Termini di utilizzo Privacy Cookie Preference Center