Solução alternativa com script
Disclaimer: Eu não tentei isso.
Nas versões mais recentes do Backup Exec, isso é programável por script.
Em um de seus artigos da KB, a Veritas tem sugestões para três soluções alternativas. O terceiro é aquele que usa a interface de script do PowerShell "BEMCLI".
Then you can mark the storage online with one of the following methods:
- Set the folder to Online manually in the storage tab of the User Interface.
- Restart Backup Exec services.
-
Use the following BEMCLI command in a batch file(see attachment) to mark all disk storage back online.(this can be
executed with windows task scheduler a few minutes after the storage goes offline.)
CD\
powershell.exe -command "&{import-module bemcli;Get-BEDiskStorageDevice | Set-BEDiskStorageDevice -Disabled $false}"
Existem dois tipos de backup para disco
O exec de backup faz distinção entre B2D
(backup em disco) e RB2D
(backup em disco removível).
No script acima, eles usam o comando Get-BEDiskStorageDevice
. Isso é para o B2D. Por exemplo. um NAS.
Para RB2D, e. uma unidade de cartucho Tandberg RDX USB, o script precisa usar Get-BEDiskCartridgeDevice
e Set-BEDiskCartridgeDevice