Rubrik
Rubrik
Useful Commands
Connecting to Rubrik via Powershell
- Download and install the Rubrik PowerShell addon:
https://www.rubrik.com/blog/get-started-rubrik-powershell-module/
- Once downloaded, open PowerShell and connect to your Rubrik:
$Cred = Get-Credential
Connect-Rubrik -Server x.x.x.x -Credential $Cred
Editing Enable storage array integration on all virtual machines
Connect to the Rubrik run the command below to enable storage array integration on all virtual machines:
Get-RubrikVM | Set-RubrikVM -UseArrayIntegration 1
- If you wish to disable storage array integration on all virtual machine run the following command:
Get-RubrikVM | Set-RubrikVM -UseArrayIntegration 0
Depending on how many virtual machines you are backing up this may take some time.