external help file: QuestSoftware.RecoveryManager.AD.PowerShell.dll-Help.xml
Module Name: Quest.RecoveryManager.AD.PowerShell
online version:
Adds a RMAD console as a replication source.
Add-RMADReplicationConsole [-ComputerName] <String> [-Mode] <ReplicationMode>
[-AccessCredential <PSCredential>] [-FallbackCredential <PSCredential>]
[-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
RMAD console can synchronize the backups, collections, global options and schedule from the consoles in the replication console list manually or on schedule.
PS C:\> C:\>$credential = Get-Credential
C:\>Add-RMADReplicationConsole Hostname1 -AccessCredential $credential -Mode Backups
This command adds the RMAD console on Hostname1 to the replication console list with the Backups mode enabled.
PS C:\> C:\>Add-RMADReplicationConsole -ComputerName Hostname1 -Mode Full
This command adds the RMAD console on Hostname1 to the replication console list with the Full mode enabled.
PS C:\> C:\>$fallbackAccount = Get-Credential
C:\>Add-RMADReplicationConsole -ComputerName Hostname1 -Mode Full -FallbackCredential $fallbackAccount
This command adds the RMAD console on Hostname1 to the replication console list with the Full mode enabled and with the specified fallback account.
Specifies the hostname of the computer on which the RMAD console you want to add is installed.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the console mode: Full (to replicate backups, collections, global options and schedule) or Backups (to replicate backups only).
Type: ReplicationMode
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the user credentials to read data from the target computer.
The user must be a local Administrator on the target computer.
To obtain the user credentials, create a PSCredential object using the Get-Credential cmdlet provided by Windows PowerShell.
Type: PSCredential
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Supplies a fallback account for replacing the account that is used by the backup schedule task.
The account must have administrator privileges on the system(s) to be backed up.
You can use this parameter only when Full mode is specified for the console.
Type: PSCredential
Parameter Sets: (All)
Aliases:
Required: False
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:
Adds storage server
Add-RMADStorageServer [-Name] <String> [<CommonParameters>]
Registers a storage server in Recovery Manager for Active Directory.
PS C:\> Add-RMADStorageServer -Name "backupsrv01.acme.test"
Registers the specified server.
DNS name or IP address of the server.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
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:
Backs up an existing computer collection.
Backup-RMADCollection [-InputObject] <ComputerCollection> [-AsJob] [-IgnoreReadOnly]
[-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
Backup-RMADCollection [-Name] <String> [-AsJob] [-IgnoreReadOnly] [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
Backs up the existing computer collection that has the specified name or is represented by the specified objects.
PS C:\> Backup-RMADCollection -Name "Collection1"
Backs up the Computer Collection named Collection1.
PS C:\> Get-RMADCollection -Id 1 | Backup-RMADCollection
Gets the Computer Collection whose identifier is 1, and then backs up that Computer Collection.
PS C:\> $c = Get-RMADCollection -Name col
C:\PS>Backup-RMADCollection -InputObject $c -AsJob
In the first line of this command, the Get-RMADCollection cmdlet gets the computer collection named col.
The computer collection object is then stored in the $c variable.
Backs up the existing Computer Collection represented by the specified collection object.
Enter a variable that contains the object or type a command or expression that gets the object.
Type: ComputerCollection
Parameter Sets: InputObject
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Runs the command as a background job.
You can use this parameter to run commands that take a significant time to complete.
Type: SwitchParameter
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
Specifies the name of the existing Computer Collection to be backed up.
Type: String
Parameter Sets: Name
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, 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.
external help file: QuestSoftware.RecoveryManager.AD.PowerShellFE.dll-Help.xml
Module Name: Quest.RecoveryManager.AD.PowerShellFE
online version:
Closes currently opened recovery project.
Close-RMADFEProject [-InformationAction <ActionPreference>] [-InformationVariable <String>]
[<CommonParameters>]
This cmdlet allows you to close previously opened recovery project in the current PowerShell session.
@{paragraph=PS C:\>}
PS C:\> Close-RMADFEProject
Closes currently opened by Open-RMADFEProject recovery project.
@{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. 이용 약관 개인정보 보호정책 Cookie Preference Center