Rubrik: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
<pre>$Cred = Get-Credential</pre> | <pre>$Cred = Get-Credential</pre> | ||
<pre>Connect-Rubrik -Server x.x.x.x -Credential $Cred</pre> | <pre>Connect-Rubrik -Server x.x.x.x -Credential $Cred</pre> | ||
===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: | |||
<pre>Get-RubrikVM | Set-RubrikVM -UseArrayIntegration 1</pre> | |||
* If you wish to disable storage array integration on all virtual machine run the following command: | |||
<pre>Get-RubrikVM | Set-RubrikVM -UseArrayIntegration 0</pre> | |||
Depending on how many virtual machines you are backing up this may take some time. |
Revision as of 13:35, 13 August 2019
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.