external help file: QuestSoftware.RecoveryManager.AD.PowerShell.dll-Help.xml
Module Name: Quest.RecoveryManager.AD.PowerShell
online version:
Publishes security check information for a specified backup.
Publish-RMADBackupSecurityStatus -BackupGuid <Guid[]> -SecurityStatus <BackupSecurityStatus>
[-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
Saves security check information for a specified backup registered with Recovery Manager for Active Directory.
PS C:\> $bkf = (Get-RMADBackup -ComputerName DC.DomainName.local)[-1]
$status = New-Object -TypeName QuestSoftware.RecoveryManager.AD.PowerShell.BackupSecurityStatus
$status.Summary = "Passed"
$status.Details = "some passed"
$status.CheckDate = Get-Date
Publish-RMADBackupSecurityStatus -BackupGuid $bkf.backupGuid -SecurityStatus $status
Get-RMADBackupSecurityStatus -BackupGuid $bkf.BackupGuid
For troubleshooting only.
This command saves antimalware scan results for a specified backup registered with Recovery Manager for Active Directory.
This is the GUID of the backup for which a user wants to get the antimalware scan results.
Type: Guid[]
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Result information about the security check of a particular backup.
Type: BackupSecurityStatus
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
@{Text=}
Type: ActionPreference
Parameter Sets: (All)
Aliases: infa
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
@{Text=}
Type: String
Parameter Sets: (All)
Aliases: iv
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:
Refreshes current information of the secure storage server.
Refresh-RMADStorageServer [-IgnoreReadOnly] -Name <String> [<CommonParameters>]
Refresh-RMADStorageServer [-IgnoreReadOnly] [-Server] <StorageServer> [<CommonParameters>]
Connects to the secure storage server and retrieves the current status (agent state and hardening state).
PS C:\> Get-RMADStorageServer | Refresh-RMADStorageServer
Updates statuses of all registered secure storage servers.
PS C:\> Refresh-RMADStorageServer -Name "storage.srv"
Refreshes the status of the specified secure storage server.
Specifies the secure storage server. Use Get-RMADStorageServer to get a list of all secure storage servers.
Type: StorageServer
Parameter Sets: Server
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Specifies the name of the secure storage server.
Type: String
Parameter Sets: Name
Aliases:
Required: True
Position: Named
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: 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:
Registers backups on an existing secure storage server in a Recovery Manager database.
Register-RMADSecureStorageBackups [-IgnoreReadOnly] [-Name] <String> [<CommonParameters>]
Register-RMADSecureStorageBackups [-IgnoreReadOnly] [-Server] <StorageServer> [<CommonParameters>]
Registers backups on an existing secure storage server in a Recovery Manager database so that the backups become available in the Recovery Manager user interface.
PS C:\> Register-RMADSecureStorageBackups -Name "storage.srv"
Registers backups on a specified storage server.
Specifies the name of the secure storage server.
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. Use Get-RMADStorageServer to get a list of all secure storage servers.
Type: StorageServer
Parameter Sets: Server
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: 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 selectively unregister backups from the Recovery Manager backup registration database.
Remove-RMADBackup [-InputObject] <BackupInfo[]> [-Delete <Boolean>] [-ShareCredential <PSCredential>]
[-IgnoreReadOnly] [-InformationAction <ActionPreference>] [-InformationVariable <String>] [-WhatIf] [-Confirm]
[<CommonParameters>]
Remove-RMADBackup [-Id] <Int32[]> [-Delete <Boolean>] [-ShareCredential <PSCredential>] [-IgnoreReadOnly]
[-InformationAction <ActionPreference>] [-InformationVariable <String>] [-WhatIf] [-Confirm]
[<CommonParameters>]
Allows you to selectively unregister backups from the Recovery Manager backup registration database.
Optionally, you can delete the unregistered backups from their location.
PS C:\> Get-RMADBackup | Where-Object {$_.Date -lt (Get-Date).AddDays(-15)} | Remove-RMADBackup -Delete $true
Gets all backups created by Recovery Manager for Active Directory in the last 15 days, unregisters these backups from the backup registration database, and then deletes the backup files.
Specifies the IBackupInfo objects representing the backups you want to unregister from the Recovery Manager backup registration database.
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
Specifies to delete the backups being unregistered from their locations.
This parameter can take one of the following values:
Type: Boolean
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies credential for share folder that contains the backup in case of -delete flag is true.
Type: PSCredential
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
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: None
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: None
Accept pipeline input: False
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: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the IDs of the backups you want to unregister from the Recovery Manager backup registration database.
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
@{Text=}
Type: ActionPreference
Parameter Sets: (All)
Aliases: infa
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
@{Text=}
Type: String
Parameter Sets: (All)
Aliases: iv
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.
© ALL RIGHTS RESERVED. Nutzungsbedingungen Datenschutz Cookie Preference Center