external help file: QuestSoftware.RecoveryManager.AD.PowerShellFE.dll-Help.xml
Module Name: Quest.RecoveryManager.AD.PowerShellFE
online version:
Creates a new Recovery Media ISO in the file system.
New-RMADFERecoveryMedia -IsoPath <String> -WsbPath <String> [-IpAddress <String>] [-DriversFolder <String>]
[-SubnetMask <String>] [-DefaultGateway <String>] [-AllowAddCustomDrivers <Boolean>]
[-AllowAddCustomDriversFromBackup <Boolean>] [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
New-RMADFERecoveryMedia -IsoPath <String> -WimPath <String> [-IpAddress <String>] [-DriversFolder <String>]
[-SubnetMask <String>] [-DefaultGateway <String>] [-AllowAddCustomDrivers <Boolean>]
[-AllowAddCustomDriversFromBackup <Boolean>] [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
New-RMADFERecoveryMedia -IsoPath <String> -BmrPath <String> [-IpAddress <String>] [-DriversFolder <String>]
[-SubnetMask <String>] [-DefaultGateway <String>] [-AllowAddCustomDrivers <Boolean>]
[-AllowAddCustomDriversFromBackup <Boolean>] [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
This cmdlet creates a new Recovery Media ISO in the file system.
@{paragraph=PS C:\>}
PS C:\> New-RMADFERecoveryMedia -WimPath C:\Recovery\WindowsRE\WinRe.wim -IsoPath C:\ProgramData\Quest\RecoveryMedia\QuestWinRe.iso
This example illustrates how to create the Recovery Media from the Windows Recovery Environment image.
@{paragraph=PS C:\>}
PS C:\> New-RMADFERecoveryMedia -WsbPath \\BackupServer\Storage\Backup1 -IsoPath C:\ProgramData\Quest\RecoveryMedia\QuestWinRe.iso
This example illustrates how to create the Recovery Media from the Windows Server backup.
Path to the output Quest Recovery Environment image file
Type: String
Parameter Sets: (All)
Aliases: Iso, Output
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Path to Windows Server Backup
Type: String
Parameter Sets: FromWsb
Aliases: Wsb
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the preconfigured IP Address to be used for the generated Recovery Media Bare Metal Console
Type: String
Parameter Sets: (All)
Aliases: Ip
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the folder for custom drivers.
Type: String
Parameter Sets: (All)
Aliases: Drivers
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the preconfigured Subnet Mask to be used for the generated Recovery Media Bare Metal Console
Type: String
Parameter Sets: (All)
Aliases: Subnet
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the preconfigured Default Gateway to be used for the generated Recovery Media Bare Metal Console
Type: String
Parameter Sets: (All)
Aliases: Gateway
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Turns on the ability to set up custom drivers.
Type: Boolean
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Turns on the ability to set up custom drivers from the backup.
Type: Boolean
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
Path to Windows Image file
Type: String
Parameter Sets: FromWim
Aliases: Wim
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies a path to Bare Metal Recovery backup.
Type: String
Parameter Sets: FromBmr
Aliases: Bmr
Required: True
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:
Creates a schedule for the backup creation operation you want to perform on a particular computer collection.
New-RMADSchedule [-Once] -StartDate <DateTime> [-MinutesDuration <UInt32>] [-MinutesInterval <UInt32>]
[-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
New-RMADSchedule [-Daily] -DaysInterval <Int32> -StartDate <DateTime> [-EndDate <DateTime>]
[-MinutesDuration <UInt32>] [-MinutesInterval <UInt32>] [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
New-RMADSchedule [-Weekly] -WeeksInterval <Int32> -DaysOfWeek <DaysOfTheWeek> -StartDate <DateTime>
[-EndDate <DateTime>] [-MinutesDuration <UInt32>] [-MinutesInterval <UInt32>]
[-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
New-RMADSchedule [-MonthlyDate] -Day <Int32> [-Months <Months>] -StartDate <DateTime> [-EndDate <DateTime>]
[-MinutesDuration <UInt32>] [-MinutesInterval <UInt32>] [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
New-RMADSchedule [-MonthlyDOW] [-DaysOfWeek <DaysOfTheWeek>] [-Months <Months>] -Week <WhichWeek>
-StartDate <DateTime> [-EndDate <DateTime>] [-MinutesDuration <UInt32>] [-MinutesInterval <UInt32>]
[-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
Creates a schedule to perform the backup creation operation a particular computer collection.
You can use the parameters of this cmdlet to set a recurring or non-recurring schedule for the backup creation operation.
PS C:\> New-RMADSchedule -Once -StartDate "2/20/2008 1:00"
Runs the backup creation operation at 1:00 a.m.
on the 20th February 2008.
PS C:\> New-RMADSchedule -Daily -StartDate "2/20/2008 1:00" -DaysInterval 3
Runs the backup creation operation every 3 days, starting from 1:00 a.m.
on the 20th February 2008.
PS C:\> New-RMADSchedule -Weekly -StartDate "2/20/2008 1:00" -WeeksInterval 2 -DaysOfWeek Monday,Friday
Runs the backup creation operation on Monday and Friday of every second week, starting from 1:00 a.m.
on the 20th February 2008.
PS C:\> New-RMADSchedule -MonthlyDate -StartDate "2/20/2008 1:00" -Day 1
Runs the backup creation operation on every first day of each month (the Months parameter is omitted, therefore the backup creation operation is invoked each month), starting from 1:00 a.m.
on the 20th February 2008.
PS C:\> New-RMADSchedule -MonthlyDOW -StartDate "2/20/2008 1:00" -DaysOfWeek 1,5 -Week 1
Runs the backup creation operation on every first Monday and Friday of each month, starting from 1:00 a.m.
on the 20th February 2008.
Runs the backup creation operation only once.
Type: SwitchParameter
Parameter Sets: Once
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the date when the backup creation operation schedule comes into effect.
Type: DateTime
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the time period (in minutes) during which you want to repeatedly run (invoke) the backup creation operation.
To set the time interval between invocations of the backup creation operation, use the MinutesInterval parameter.
Type: UInt32
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the time interval (in minutes) between invocations of the backup creation operation.
To set the time period during which you want to repeatedly run (invoke) the backup creation operation, use the MinutesDuration parameter.
Type: UInt32
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Runs the backup creation operation on a daily basis.
Type: SwitchParameter
Parameter Sets: Daily
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Sets an interval (in number of days) between invocations of the backup creation operation.
Type: Int32
Parameter Sets: Daily
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the date when the backup creation operation schedule expires.
Type: DateTime
Parameter Sets: Daily, Weekly, MonthlyDate, MonthlyDOW
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Runs the backup creation operation on a weekly basis.
Type: SwitchParameter
Parameter Sets: Weekly
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Sets an interval (in number of weeks) between invocations of the backup creation operation.
Type: Int32
Parameter Sets: Weekly
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Runs the backup creation operation on particular days of week.
To set the weeks when you want to run the backup creation operation, use the Weekly or MonthlyDOW parameter.
Type: DaysOfTheWeek
Parameter Sets: Weekly
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Type: DaysOfTheWeek
Parameter Sets: MonthlyDOW
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Runs the backup creation operation on particular day of month.
To set the months and day of month when you want to run the backup creation operation, use the Months and Day parameters respectively.
Type: SwitchParameter
Parameter Sets: MonthlyDate
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Sets the day of the month when you want to run the backup creation operation.
Type: Int32
Parameter Sets: MonthlyDate
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Sets the months when you want to run the backup creation operation.
Type: Months
Parameter Sets: MonthlyDate, MonthlyDOW
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Runs the backup creation operation on particular days of week in particular months.
To set the months, weeks, and days of week, use the Months, Week, and DaysOfWeek parameters respectively.
Type: SwitchParameter
Parameter Sets: MonthlyDOW
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Sets the week of the month when you want to run the backup creation operation.
This parameter accepts the following values:* 1.
Specifies the first week of the month.
Type: WhichWeek
Parameter Sets: MonthlyDOW
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.PowerShellFE.dll-Help.xml
Module Name: Quest.RecoveryManager.AD.PowerShellFE
online version:
Opens the RMADFE project.
Open-RMADFEProject [-Path] <String> [-Password] <SecureString> [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
This cmdlet opens the RMADFE project from the specified location.
You must also supply the password that is used to access the project content.
@{paragraph=PS C:\>}
PS C:\> Open-RMADFEProject -Path C:\RMADFeProjects\SampleProject.frproj -Password (ConvertTo-SecureString "project password" -AsPlainText -Force)
This command opens SampleProject.frproj from the specified location.
Specifies the path to the existing RMADFE project file.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the password that is used to access the RMADFE project content.
Type: SecureString
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
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:
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:\> {{ Add example code here }}
{{ Add example description here }}
Specifies the GUID of the backup to get.
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.
© 2024 Quest Software Inc. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center