cancel
Showing results forΒ 
Search instead forΒ 
Did you mean:Β 

bpdown / bpup in PowerShell

ChristianWa
Level 0

Hi,

i would like to do the bpdown and bpup via Powershell. I was planing to stop and disable the services and then to start them in the order of the bpdown and bpup batch shown when used with the -verbose option. In the Documentation it says, that bpdown and up do additional things in NetBackup to bring the connection to an actual restartet state. Which NetBackup Commands are used with which options in addition to the stopping and disabling of the shown services?

For the bpdown i would like to use the Powershell script below:

Get-Service -Name "NetBackup Indexing Manager" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Indexing Manager" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Service Monitor" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Storage Lifecycle Manager" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Storage Lifecycle Manager" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Vault Manager" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Vault Manager" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Service Layer" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Policy Execution Manager" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Policy Execution Manager" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Job Manager" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Job Manager" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Request Daemon" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Request Daemon" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Compatibility Service" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Compatibility Service" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Authorization" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Authorization" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Authentication" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Authentication" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup CloudStore Service Container" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Deduplication Engine" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Deduplication Engine" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Remote Manager and Monitor Service" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Device Manager" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Volume Manager" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Event Manager" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Event Manager" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Deduplication Multi-Threaded Agent" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Discovery Framework" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup SAN Client Fibre Transport Service" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup SAN Client Fibre Transport Service" -ComputerName $ServerName | Set-Service -StartupType Disabled

Get-Service -Name "NetBackup Client Service" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Legacy Client Service" -ComputerName $ServerName | Stop-Service

Get-Service -Name "NetBackup Legacy Network Service" -ComputerName $ServerName | Stop-Service

1 REPLY 1

Michal_Mikulik1
Moderator
Moderator
Partner    VIP    Accredited Certified

Hello,

not sure if anybody will answer this because these commands come in .exe form and their contents is not documented.

Maybe in a future release this will be changed, because 8.1.1 Release Notes say:

A new, fully documented command for shutting down NetBackup processes and
daemons will be provided in an upcoming release. At that point, the following
commands will no longer be available:
β–  bp.kill_all
β–  bpdown

Regards

Michal