BackupExec 2015 - Status etc. per Commandline abfragen
Aus znilwiki
Nachfolgende Sammlung habe ich erstellt für ein Projekt zur Skript-gesteuerten Wiederherstellung von VM's.
Ziel dabei war es die vorhandenen Backup-Datensätze für eine bestimmt VM zu finden und dann gezielt einen dieser als neue(!) VM zurück zu spielen.
Das hier ist die Sammlung der verfügbaren PowerShell-Befehle inklusive Parameter und Erklärungen.
Vorbereitung
Alle Befehle wurden im Backup Exec Management Command Line Interface eingegeben.
Beim ersten Start fragt diese nach der Erlaubnis wegen der Ausführung Signierter PowerShell-Skripte und ob dem PowerShell-Plugin vertraut wird - beides bitte bejahen!
BackupJobs abfragen
Alle vorhandenen BackupJobs ermitteln
Get-BEJob -JobType Backup
Ausgabe: (hier 3 Jobs)
Name : QB-Test-01 Backup 00002-Backup
JobType : Backup
TaskType : OnetimeBackup
TaskName : Backup
IsActive : False
Status : Succeeded
SubStatus : Ok
SelectionSummary : QB-Test-01 (Partial), D: (Partial)
Storage : Beliebiger Festplattenspeicher
Schedule : Nicht geplant
IsBackupDefinitionJob : False
Name : QB Dienstag-Gesamt
JobType : Backup
TaskType : Full
TaskName : Gesamt
IsActive : False
Status : Scheduled
SubStatus : Ok
SelectionSummary : QB
Storage : Laufwerk D
Schedule : Dienstag alle 1 Woche(n) um 16:00 ab 08.12.2015.
IsBackupDefinitionJob : True
Name : QB Dienstag-Inkrementell
JobType : Backup
TaskType : Incremental
TaskName : Inkrementell
IsActive : False
Status : Scheduled
SubStatus : Ok
SelectionSummary : QB
Storage : Laufwerk D
Schedule : Alle 1 Tage um 23:00 gültig am 08.12.2015.
IsBackupDefinitionJob : True
nur geplante Jobs
Statt aller werden nachfolgend nur Jobs aufgelistet die geplant und mit Sicherung zu tun haben:
Get-BEJob -JobType Backup,Duplicate -Status Scheduled,Active,Linked
Ausgabe:
Name : QB Dienstag-Gesamt
JobType : Backup
TaskType : Full
TaskName : Gesamt
IsActive : False
Status : Scheduled
SubStatus : Ok
SelectionSummary : QB
Storage : Laufwerk D
Schedule : Dienstag alle 1 Woche(n) um 16:00 ab 08.12.2015.
IsBackupDefinitionJob : True
Name : QB Dienstag-Inkrementell
JobType : Backup
TaskType : Incremental
TaskName : Inkrementell
IsActive : False
Status : Scheduled
SubStatus : Ok
SelectionSummary : QB
Storage : Laufwerk D
Schedule : Alle 1 Tage um 23:00 gültig am 08.12.2015.
IsBackupDefinitionJob : True
nur geplante Jobs - ausführlich
Get-BEJob -JobType Backup,Duplicate -Status Scheduled,Active,Linked | select-object -property *
Ausgabe:
Name : QB Dienstag-Gesamt
Id : c974df6e-9310-4dbb-b94a-d73df0b07ab1
TaskName : Gesamt
IsActive : False
Status : Scheduled
SubStatus : Ok
JobType : Backup
TaskType : Full
Schedule : Dienstag alle 1 Woche(n) um 16:00 ab 08.1
SelectionSummary : QB
NextStartDate : 12.01.2016 16:00:00
Priority : Normal
Storage : Laufwerk D
StorageId : 390f6682-4e8c-483f-9333-d2dee978f177
KeepDiskDataFor : 14.00:00:00
MediaSet :
MediaSetId : 00000009-03eb-0000-0000-000000000000
MediaVault :
MediaVaultId : 00000000-0000-0000-0000-000000000000
IsBackupDefinitionJob : True
BackupDefinition : QB Dienstag
BackupDefinitionId : 05b55276-db8f-4222-90e3-03dce2d4eb35
IsSyntheticBackupDefinitionJob : False
SyntheticBackupDefinition :
SyntheticBackupDefinitionId : 00000000-0000-0000-0000-000000000000
IsOneTimeBackupJob : False
OneTimeBackupJob :
OneTimeBackupJobId : 00000000-0000-0000-0000-000000000000
AgentServer : {192.168.244.200:443}
AgentServerIdList : {31cc3f5f-9d57-4b79-a003-00997be88f3d}
BackupExecServer :
BackupExecServerId : 00000000-0000-0000-0000-000000000000
SupersedingJob :
SupersedingJobId : 00000000-0000-0000-0000-000000000000
Name : QB Dienstag-Inkrementell
Id : 96207dbc-629c-4cc8-942f-51ab7ce9a506
TaskName : Inkrementell
IsActive : False
Status : Scheduled
SubStatus : Ok
JobType : Backup
TaskType : Incremental
Schedule : Alle 1 Tage um 23:00 gültig am 08.12.2015.
SelectionSummary : QB
NextStartDate : 11.01.2016 23:00:00
Priority : Normal
Storage : Laufwerk D
StorageId : 390f6682-4e8c-483f-9333-d2dee978f177
KeepDiskDataFor : 7.00:00:00
MediaSet :
MediaSetId : 00000009-03eb-0000-0000-000000000000
MediaVault :
MediaVaultId : 00000000-0000-0000-0000-000000000000
IsBackupDefinitionJob : True
BackupDefinition : QB Dienstag
BackupDefinitionId : 05b55276-db8f-4222-90e3-03dce2d4eb35
IsSyntheticBackupDefinitionJob : False
SyntheticBackupDefinition :
SyntheticBackupDefinitionId : 00000000-0000-0000-0000-000000000000
IsOneTimeBackupJob : False
OneTimeBackupJob :
OneTimeBackupJobId : 00000000-0000-0000-0000-000000000000
AgentServer : {192.168.244.200:443}
AgentServerIdList : {31cc3f5f-9d57-4b79-a003-00997be88f3d}
BackupExecServer :
BackupExecServerId : 00000000-0000-0000-0000-000000000000
SupersedingJob :
SupersedingJobId : 00000000-0000-0000-0000-000000000000
Status eines bestimmten Jobs abfragen
Wir fragen jeweils den letzten Durchlauf ab!
Anhand der Id
(zu bevorzugen!):
Get-BEJob -Id c974df6e-9310-4dbb-b94a-d73df0b07ab1 | Get-BEJobHistory -FromLastJobRun | select-object -property *
Anhand des Job-Names (Fehlerträchtig, glaubt mir!)
Get-BEJob -Name "QB Dienstag-Gesamt" | Get-BEJobHistory -FromLastJobRun | select-object -property *
Ausgabe:
ErrorMessage :
ErrorCategoryType :
Name : QB Dienstag-Gesamt
Id : 4dd95f18-21c4-48ee-9a4b-222ec0fb955d
JobName : QB Dienstag-Gesamt
JobStatus : Succeeded
StartTime : 11.01.2016 11:56:36
EndTime : 11.01.2016 12:26:01
ElapsedTime : 00:29:25
TotalDataSizeBytes : 85899481303
JobRateMBPerMinute : 3415,04
DeduplicationRatio : 0
JobType : Backup
PercentComplete : 100
StorageName : Laufwerk D
BackupExecServerName : QB-TEST-01
Job : QB Dienstag-Gesamt
JobId : c974df6e-9310-4dbb-b94a-d73df0b07ab1
AgentServer : {192.168.244.200:443}
AgentServerIdList : {31cc3f5f-9d57-4b79-a003-00997be88f3d, f0b7362c-15e4-49c6-a5f1-1f5751aa16b1, b9aa2cdf-94cf-4c3d-8572-22e9dabe44e9, 2bf784ae-5616-418a-ac
54-47739ad23a50...}
JobLogFilePath : C:\Program Files\Symantec\Backup Exec\Data\BEX_QB-TEST-01_00115.xml
ErrorCode : 0
ErrorCategory : 0
Backup-Storage
Alle verfügbaren Backup-Storages (in der Regel Backup-2-Disk Speicher) anzeigen:
Get-BEStorage | Select-Object -Property *
Ausgabe:
Name : Laufwerk D
Id : 390f6682-4e8c-483f-9333-d2dee978f177
StorageType : DiskStorageDevice
Servers : {QB-TEST-01}
BlockAndBufferSizeAutoDetectEnabled : True
IsSystemDrive : False
DriveLetter : D:
LowDiskSpaceInformationThresholdPercent : 25
LowDiskSpaceWarningThresholdPercent : 15
LowDiskSpaceCriticalThresholdPercent : 5
ConfigurationStatus : Configured
ConfigurationStatusMessage :
RecommendationRating : 1152921504607739235
MaximumFileSizeBytes : 53687091200
PreallocationEnabled : False
PreallocationIncrementBytes : 1073741824
BlockSizeBytes : 4096
BufferSizeBytes : 65536
DiskSpaceReserveBytes : 107374182400
CompressionRatio : 0
DaysOfStorageRemaining :
DaysOfStorageRemainingStatus : UsedDiskSpaceHistoryBeingGathered
CapacityStatus : Normal
VirtualWriteProtectionEnabled : False
TotalCapacityBytes : 3750476378112
TotalBackupStorageBytes : 3643102195712
UsedCapacityBytes : 7885103104
DataWrittenBytes : 7676739584
AvailableCapacityBytes : 3742591275008
Description :
Active : False
Disabled : False
Paused : False
IsValidBackupJobTarget : True
IsValidRestoreJobTarget : True
IsValidDuplicateJobReadTarget : True
IsValidDuplicateJobWriteTarget : True
IsValidInitializeJobTarget : False
IsValidScanJobTarget : False
IsValidInventoryJobTarget : True
IsValidCatalogJobTarget : False
IsValidInventoryAndCatalogJobTarget : True
IsValidEraseJobTarget : False
IsValidImportJobTarget : False
IsValidExportJobTarget : False
IsValidCleaningJobTarget : False
IsValidEjectJobTarget : False
IsValidMediaLabelJobTarget : False
IsValidBlinkJobTarget : False
IsValidUnblinkJobTarget : False
IsValidFormatJobTarget : False
IsValidFormatWormJobTarget : False
IsValidRetensionJobTarget : False
IsValidLockUnlockJobTarget : False
IsValidLabelJobTarget : False
DateInService : 11.01.2016 11:47:53
UsesDataLifecycleManagement : True
Name : Beliebiger Festplattenspeicher
Id : 00000006-0001-0000-0000-000000000000
StorageType : DiskStorageDevicePool
MemberDevices : {Laufwerk D}
Description :
IsSystemDefined : True
SelectionMethod : Default
UsesDataLifecycleManagement : True
Auswahllisten
Liste aller Auswahllisten
Get-BEBackupDefinition
Ausgabe:
Name : QB Dienstag
Description :
SelectionList : 192.168.244.200:443 QB DGHBCS\QB
InitialFullBackup : Gesamt
AdditionalBackups : {Inkrementell}
Verifies : {}
DuplicateStages : {}
SimultaneousConvertToVirtualStage :
ConvertBackupToVirtualStages : {}
Details einer Auswahlliste
Get-BEBackupDefinition -Name "QB Dienstag"
Ausgabe:
Name : QB Dienstag
Description :
SelectionList : 192.168.244.200:443 QB DGHBCS\QB
InitialFullBackup : Gesamt
AdditionalBackups : {Inkrementell}
Verifies : {}
DuplicateStages : {}
SimultaneousConvertToVirtualStage :
ConvertBackupToVirtualStages : {}
Mit allen Details:
Get-BEBackupDefinition -Name "QB Dienstag" | Select-Object -Property *
Ausgabe:
EditMode : Saved
SelectionList : {BackupExec.Management.CLI.BEAgentServerBackupSelectionList}
AgentServer : 192.168.244.200:443
AgentServerId : 31cc3f5f-9d57-4b79-a003-00997be88f3d
InitialFullBackup : Gesamt
AdditionalBackups : {Inkrementell}
Verifies : {}
DuplicateStages : {}
SimplifiedDisasterRecoveryEnabled : False
SelectionSummary : QB
SimultaneousConvertToVirtualStage :
ConvertBackupToVirtualStages : {}
Priority : Normal
RestrictToBackupExecServer :
RestrictToBackupExecServersInPool :
EnableTestRun : False
TestRunSchedule :
TestRunCheckLogonAccount : False
TestRunCheckStorageSpace : False
TestRunCheckMediaAvailable : False
TestRunJobSizeCalculationMethod : UsePreviousJobHistories
TestRunPlaceScheduledBackupJobOnHoldIfUnsuccessful : False
NetworkInterface :
NetworkProtocol : AnyAvailable
NetworkSubnet :
AllowAnyNetworkForAgentAccess : False
EnableCheckpointRestart : False
UseSnapshotTechnology : True
SnapshotTechnology : Automatic
SnapshotProvider : Automatic
ProcessLogicalVolumesSequentially : True
UseOffhostBackup : False
OffhostBackupSnapshotProvider : Automatic
FailIfNoOffhostBackup : False
ProcessOffhostLogicalVolumesSequentially : False
DelayedCatalogScheduleType : ImmediatelyAfterBackup
DelayedCatalogStartAt : 01.01.1970 07:00:00
DelayedCatalogDaysOfWeek : {Monday, Tuesday, Wednesday, Thursday...}
FileSystemBackupMethod : UseModifiedTime
FileSystemEnableNtfsSingleInstanceBackup : True
FileSystemFollowJunctionPoint : False
FileSystemFollowSymbolicLink : False
FileSystemBackupRemoteStorage : False
FileSystemBackupOpenFile : WithALock
FileSystemBackupOpenFileIfClosedWithinSeconds : 30
ExchangePreConsistencyCheck : True
ExchangeContinueIfConsistencyCheckIsUnsuccessful : True
ExchangeHighAvailability : FromPassiveCopyIfAvailableOtherwiseActiveCopy
ExchangePreferredServerGroup :
SharePointReleaseLockOnFarmTopology : False
SharePointPreConsistencyCheck : False
SharePointContinueIfConsistencyCheckIsUnsuccessful : False
LinuxMacPreserveChangeTime : False
LinuxMacFollowLocalMountPoint : True
LinuxMacFollowRemoteMountPoint : False
LinuxMacLockRemoteFile : True
ActiveDirectoryPreConsistencyCheck : True
ActiveDirectoryContinueIfConsistencyCheckIsUnsuccessful : True
ActiveDirectoryUseGrt : True
OracleMaximumNumberOfDevicesToUseForResources : 1
OracleMinimumNumberOfDevicesRequiredForJob : 1
VirtualMachineBackupPoweredOffVirtualMachine : True
VirtualMachineUseGrtForFileSystem : False
VirtualMachineUseGrtForActiveDirectory : False
VirtualMachineUseGrtForExchange : False
VirtualMachineUseGrtForSql : False
VirtualMachineUseGrtForSharePoint : False
HyperVExcludeVirtualMachinesNeedingSavedState : False
VMwareTransportModePriority : {SAN, Hotadd, NBD, NBDSSL}
VMwareVSpherePort : 902
NdmpEMCBackupType : Dump
NdmpEMCBackupWithIntegratedCheckpoints : True
NdmpEMCEnableFileHistory : True
NdmpNetAppBackupAccessControlLists : True
NdmpNetAppEnableFileHistory : True
Name : QB Dienstag
Id : 05b55276-db8f-4222-90e3-03dce2d4eb35
NextJob : QB Dienstag-Inkrementell
NextJobId : 96207dbc-629c-4cc8-942f-51ab7ce9a506
Description :
Verwendung der Auswahlliste abfragen
Get-BEBackupDefinition -Name "QB Dienstag" | Select-Object -ExpandProperty SelectionList
Ausgabe:
AgentServer Selections
----------- ----------
192.168.244.200:443 {DGHBCS\QB}
Liste aller BackupExec PowerShell Befehle
Add-BEAgentServerToAgentServerGroup
Add-BEBackupExecServerToCloudStorageDevice
Add-BEBackupExecServerToDeduplicationDiskStorageDevice
Add-BEBackupExecServerToDiskStorageDevice
Add-BEBackupExecServerToLegacyBackupToDiskFolderDevice
Add-BEBackupExecServerToNdmpServer
Add-BEBackupExecServerToOpenStorageDevice
Add-BEBackupExecServerToRemoteMediaAgentForLinux
Add-BEBackupExecServerToVirtualDiskDevice
Add-BEBackupSelection
Add-BEConvertToVirtualStageBackupTask
Add-BEDeviceToStorageDevicePool
Add-BEDifferentialBackupTask
Add-BEDuplicateStageBackupTask
Add-BEFileAgentServer
Add-BEFullBackupTask
Add-BEGlobalExcludeSelection
Add-BEIncrementalBackupTask
Add-BELinuxAgentServer
Add-BEMacintoshAgentServer
Add-BENdmpAgentServer
Add-BENdmpServer
Add-BERemoteMediaAgentForLinux
Add-BEScheduleDatesToExclude
Add-BEScheduleDatesToInclude
Add-BEServerToBackupExecServerPool
Add-BESharePointFarmAgentServer
Add-BETapeDriveDeviceToRoboticLibraryPartition
Add-BEVerifyBackupTask
Add-BEVMwareAgentServer
Associate-BEMediaWithMediaSet
Cancel-BEJob
Clear-BEAlert
Configure-BEDeduplicationDiskStorageDevice
Configure-BEDiskCartridgeDevice
Configure-BEDiskStorageDevice
Configure-BEUnconfiguredDiskCartridgeDevice
Configure-BEUnconfiguredDiskStorageDevice
Configure-BEUnconfiguredVirtualDiskDevice
Establish-BETrust
Export-BEBackupDefinition
Filter-Or
Get-BEActiveJobDetail
Get-BEAgentServer
Get-BEAgentServerBackupSource
Get-BEAgentServerGroup
Get-BEAlert
Get-BEAlertCategory
Get-BEAlertHistory
Get-BEAuthorizedOracleServer
Get-BEBackupDefinition
Get-BEBackupExecServer
Get-BEBackupExecServerPool
Get-BEBackupExecSetting
Get-BEBackupJobDefault
Get-BEBarcodeRule
Get-BECentralAdministrationBackupExecServer
Get-BECleanUtilityJob
Get-BECloudStorageDevice
Get-BECloudStorageServerType
Get-BECommand
Get-BEConvertToVirtualJob
Get-BEDeduplicationDiskStorageDevice
Get-BEDiskCartridgeDevice
Get-BEDiskStorageDevice
Get-BEEditionInformation
Get-BEEjectUtilityJob
Get-BEEncryptionKey
Get-BEEraseUtilityJob
Get-BEErrorHandlingRule
Get-BEErrorMessage
Get-BEExportExpiredUtilityJob
Get-BEExportUtilityJob
Get-BEGlobalExcludeSelection
Get-BEImportUtilityJob
Get-BEInstalledUpdate
Get-BEInventoryUtilityJob
Get-BEJob
Get-BEJobHistory
Get-BEJobLog
Get-BEJobQueue
Get-BELegacyBackupToDiskFolderDevice
Get-BELicenseInformation
Get-BELogonAccount
Get-BEManagedBackupExecServer
Get-BEMedia
Get-BEMediaSet
Get-BEMediaType
Get-BEMediaVault
Get-BENdmpServer
Get-BENetworkInterface
Get-BENotificationConfiguration
Get-BENotificationRecipient
Get-BENotificationRecipientGroup
Get-BENotificationRecipientObject
Get-BEOneTimeBackupJob
Get-BEOpenStorageDevice
Get-BEOpenStorageLogicalStorageUnit
Get-BEOpenStorageServerType
Get-BEPreferredServerGroup
Get-BERemoteMediaAgentForLinux
Get-BEReport
Get-BERoboticLibraryDevice
Get-BERoboticLibraryPartition
Get-BERoboticLibrarySlot
Get-BEScanUtilityJob
Get-BEServerInformation
Get-BEService
Get-BEStandaloneBackupExecServer
Get-BEStorage
Get-BEStorageArrayConfigurationVirtualDiskCount
Get-BEStorageArrayConfigurationVirtualDiskMaxGigabyteSize
Get-BEStorageArrayDevice
Get-BEStorageArrayPhysicalDisk
Get-BEStorageDevice
Get-BEStorageDevicePool
Get-BESyntheticBackupDefinition
Get-BESyntheticBackupJobDefault
Get-BETapeDriveDevice
Get-BEUnlockUtilityJob
Get-BEVirtualDiskDevice
Get-BEVMwareAgentServerVM
Grant-BETrust
Hold-BEJob
Hold-BEJobQueue
Import-BELegacyBackupToDiskFolderDevice
Initialize-BEUnconfiguredDiskCartridgeDevice
Initialize-BEUnconfiguredDiskStorageDevice
Initialize-BEUnconfiguredVirtualDiskDevice
Install-BEWindowsAgentServer
Invoke-BEReport
Move-BEMediaToMediaSet
Move-BEMediaToMediaVault
New-BEActiveDirectoryApplicationModeSelection
New-BEActiveDirectoryLightweightDirectoryServiceSelection
New-BEAgentServerGroup
New-BEAgentServerSelection
New-BEAuthorizedOracleServer
New-BEBackupDefinition
New-BEBackupExecServerPool
New-BEBackupSelection
New-BEBarcodeRule
New-BECloudStorageDevice
New-BEConvertToVirtualTargetEnvironment
New-BEDeduplicationDiskStorageDevice
New-BEDiskCartridgeDevice
New-BEDiskStorageDevice
New-BEDominoSelection
New-BEEncryptionKey
New-BEEnterpriseVaultComplianceAcceleratorSelection
New-BEEnterpriseVaultDirectorySelection
New-BEEnterpriseVaultDiscoveryAcceleratorSelection
New-BEExchangeDatabaseSelection
New-BEExchangeStorageGroupDatabaseSelection
New-BEFileSystemSelection
New-BEHyperVSelection
New-BELinuxMacSelection
New-BELogonAccount
New-BEMediaSet
New-BEMediaVault
New-BENdmpEMCServerSelection
New-BENdmpNetAppServerSelection
New-BENotificationRecipient
New-BENotificationRecipientGroup
New-BEOpenEnterpriseServerSelection
New-BEOpenStorageDevice
New-BEOracleSelection
New-BEPreferredServerGroup
New-BESchedule
New-BESharePointAllResourcesSelection
New-BESharePointCentralAdministrationWebApplicationSelection
New-BESharePointConfigurationDatabaseSelection
New-BESharePointGlobalSettingsSelection
New-BESharePointHelpSearchSelection
New-BESharePointInfoPathServicesSelection
New-BESharePointPortalSiteSelection
New-BESharePointServiceApplicationProxySelection
New-BESharePointServiceApplicationSelection
New-BESharePointServiceSiteSelection
New-BESharePointSharedServiceApplicationProxySelection
New-BESharePointSharedServiceApplicationSelection
New-BESharePointSharedServiceProviderSelection
New-BESharePointSingleSignOnDatabaseSelection
New-BESharePointWebApplicationSelection
New-BESqlDatabaseSelection
New-BEStorageDevicePool
New-BESyntheticBackupDefinition
New-BESystemStateSelection
New-BEUtilityPartitionSelection
New-BEVMwareSelection
Register-BEEvent
Remove-BEAgentServerFromAgentServerGroup
Remove-BEAgentServerGroup
Remove-BEAlertHistory
Remove-BEBackupDefinition
Remove-BEBackupExecServerFromCloudStorageDevice
Remove-BEBackupExecServerFromDeduplicationDiskStorageDevice
Remove-BEBackupExecServerFromDiskStorageDevice
Remove-BEBackupExecServerFromLegacyBackupToDiskFolderDevice
Remove-BEBackupExecServerFromNdmpServer
Remove-BEBackupExecServerFromOpenStorageDevice
Remove-BEBackupExecServerFromRemoteMediaAgentForLinux
Remove-BEBackupExecServerFromVirtualDiskDevice
Remove-BEBackupExecServerPool
Remove-BEBackupTask
Remove-BEBarcodeRule
Remove-BECloudStorageDevice
Remove-BEConvertToVirtualJob
Remove-BEDeduplicationDiskStorageDevice
Remove-BEDeviceFromStorageDevicePool
Remove-BEDiskCartridgeDevice
Remove-BEDiskStorageDevice
Remove-BEEncryptionKey
Remove-BEGlobalExcludeSelection
Remove-BEJob
Remove-BEJobHistory
Remove-BELegacyBackupToDiskFolderDevice
Remove-BELogonAccount
Remove-BEMedia
Remove-BEMediaSet
Remove-BEMediaVault
Remove-BENdmpServer
Remove-BENotificationRecipient
Remove-BENotificationRecipientGroup
Remove-BENotificationRecipientObject
Remove-BEOneTimeBackupJob
Remove-BEOpenStorageDevice
Remove-BEPreferredServerGroup
Remove-BERemoteMediaAgentForLinux
Remove-BERoboticLibraryDevice
Remove-BEScheduleDatesToExclude
Remove-BEScheduleDatesToInclude
Remove-BEServerFromBackupExecServerPool
Remove-BEStorageArrayDevice
Remove-BEStorageDevicePool
Remove-BESyntheticBackupDefinition
Remove-BETapeDriveDevice
Remove-BETapeDriveDeviceFromRoboticLibraryPartition
Remove-BEVirtualDiskDevice
Rename-BEAgentServerGroup
Rename-BEBackupDefinition
Rename-BEBackupTask
Rename-BECleanUtilityJob
Rename-BECloudStorageDevice
Rename-BEConvertToVirtualJob
Rename-BEDeduplicationDiskStorageDevice
Rename-BEDiskCartridgeDevice
Rename-BEDiskStorageDevice
Rename-BEEjectUtilityJob
Rename-BEEraseUtilityJob
Rename-BEExportExpiredUtilityJob
Rename-BEExportUtilityJob
Rename-BEImportUtilityJob
Rename-BEInventoryUtilityJob
Rename-BELegacyBackupToDiskFolderDevice
Rename-BELogonAccount
Rename-BEMedia
Rename-BEMediaSet
Rename-BEMediaVault
Rename-BENotificationRecipient
Rename-BENotificationRecipientGroup
Rename-BEOneTimeBackupJob
Rename-BEOpenStorageDevice
Rename-BEPreferredServerGroup
Rename-BERoboticLibraryDevice
Rename-BEScanUtilityJob
Rename-BEStorageArrayDevice
Rename-BEStorageDevicePool
Rename-BESyntheticBackupDefinition
Rename-BETapeDriveDevice
Rename-BEUnlockUtilityJob
Rename-BEVirtualDiskDevice
Replace-BEEncryptionKey
Reset-BETapeDriveCleaningStatistic
Reset-BETapeDriveToDefaultSetting
Restart-BEService
Resume-BEJob
Resume-BEJobQueue
Run-BEJob
Run-BEReport
Save-BEBackupDefinition
Save-BEBackupJobDefault
Save-BESyntheticBackupDefinition
Save-BESyntheticBackupJobDefault
Search-BECatalog
Set-BEAgentServer
Set-BEAgentServerBackupSource
Set-BEAgentServerGroup
Set-BEAlertCategory
Set-BEBackupDefinition
Set-BEBackupExecServerPool
Set-BEBackupExecSetting
Set-BEBackupJobDefault
Set-BEBackupSelectionListOrder
Set-BEBackupTask
Set-BECentralAdministrationBackupExecServer
Set-BECleanUtilityJob
Set-BECloudStorageDevice
Set-BEConvertToVirtualJob
Set-BEDeduplicationDiskStorageDevice
Set-BEDifferentialBackupTask
Set-BEDiskCartridgeDevice
Set-BEDiskStorageDevice
Set-BEDuplicateStageBackupTask
Set-BEEjectUtilityJob
Set-BEEraseUtilityJob
Set-BEErrorHandlingRule
Set-BEExportExpiredUtilityJob
Set-BEExportUtilityJob
Set-BEFullBackupTask
Set-BEImportUtilityJob
Set-BEIncrementalBackupTask
Set-BEInitialFullBackupTask
Set-BEInventoryUtilityJob
Set-BELegacyBackupToDiskFolderDevice
Set-BELogonAccount
Set-BEManagedBackupExecServer
Set-BEMedia
Set-BEMediaSet
Set-BEMediaType
Set-BEMediaVault
Set-BENdmpServer
Set-BENotificationConfiguration
Set-BENotificationRecipient
Set-BENotificationRecipientGroup
Set-BEOneTimeBackupJob
Set-BEOpenStorageDevice
Set-BEPreferredServerGroup
Set-BERemoteMediaAgentForLinux
Set-BERoboticLibraryDevice
Set-BERoboticLibrarySlot
Set-BEScanUtilityJob
Set-BEScheduleDatesToExclude
Set-BEScheduleDatesToInclude
Set-BEStandaloneBackupExecServer
Set-BEStorageArrayDevice
Set-BEStorageDevice
Set-BEStorageDevicePool
Set-BESyntheticBackupDefinition
Set-BESyntheticBackupJobDefault
Set-BESyntheticFullBackupTask
Set-BESyntheticIncrementalBackupTask
Set-BESyntheticInitialFullBackupTask
Set-BETapeDriveDevice
Set-BETapeDriveToDefaultSetting
Set-BETraceSource
Set-BEUnlockUtilityJob
Set-BEUserDefaultLogonAccount
Set-BEVerifyBackupTask
Set-BEVirtualDiskDevice
Share-BECloudStorageDevice
Share-BEDeduplicationDiskStorageDevice
Share-BEDiskStorageDevice
Share-BELegacyBackupToDiskFolderDevice
Share-BENdmpServer
Share-BEOpenStorageDevice
Share-BERemoteMediaAgentForLinux
Share-BEVirtualDiskDevice
Show-BEHelp
Sort-UsingFilters
Split-UsingFilter
Start-BEJob
Start-BEService
Stop-BEJob
Stop-BEService
Submit-BECatalogMediaJob
Submit-BECleanJob
Submit-BEConvertBackupToVirtualJob
Submit-BEConvertToVirtualJob
Submit-BEEjectMediaJob
Submit-BEEraseMediaJob
Submit-BEExportExpiredMediaJob
Submit-BEExportMediaJob
Submit-BEFileSystemRestoreJob
Submit-BEFormatMediaJob
Submit-BEImportMediaJob
Submit-BEInitializeJob
Submit-BEInventoryAndCatalogMediaJob
Submit-BEInventoryJob
Submit-BELabelMediaJob
Submit-BELinuxMacRestoreJob
Submit-BELockJob
Submit-BEOnetimeBackupJob
Submit-BERetensionMediaJob
Submit-BEScanJob
Submit-BEStorageArrayDeviceConfigurationJob
Submit-BEUnlockJob
Suspend-BEJob
Suspend-BEJobQueue
Switch-BEEncryptionKey
Take-BEJobOffHold
Test-BEBackupExecServerOnCloudStorageDevice
Test-BEBackupExecServerOnDeduplicationDiskStorageDevice
Test-BEBackupExecServerOnNdmpServer
Test-BEBackupExecServerOnOpenStorageDevice
Test-BEBackupExecServerOnRemoteMediaAgentForLinux
Test-BECredential
Test-BELogonAccount
Update-BEWindowsAgentServer
Use-BERestrictedLogonAccount
Wait-BEJob