Stop-VBRLinuxFileRestore
Short Description
Stops Linux-based or Unix-based guest OS files restore.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Stop-VBRLinuxFileRestore -LinuxFlrObject <VBRLinuxFlrObject> [<CommonParameters>] |
Detailed Description
This cmdlet stops Linux-based or Unix-based guest OS file restore process started with the Start-VBRLinuxFileRestoreStarts a restore session of Linux-based or Unix-based guest OS files. cmdlet.
When you stop the OS file restore, Veeam Backup & Replication unmounts virtual disks and powers the proxy appliance off.
Note |
|
You cannot restore files after the disks are unmounted. |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
LinuxFlrObject |
Specifies the Linux file restore process initiated by that you want to stop.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Stopping Linux-Based Guest OS File Restore
This example shows how to stop a restore session of Linux or Unix-based guest OS files of the UbuntuSrv machine.
|
$backup = Get-VBRBackup -Name "UbuntuSrv" $restorepoint = Get-VBRRestorePoint -Backup $backup $server = Get-VBRServer -Name "ESXi01" $resourcepool = Find-VBRViResourcePool -Server $server -Name "Servers" $session = Start-VBRLinuxFileRestore -RestorePoint $restorepoint -Server $server -ResourcePool $resourcepool Stop-VBRLinuxFileRestore -LinuxFlrObject $session |
Perform the following steps:
- Start a restore session:
- Run the
Get-VBRBackupReturns backups. cmdlet. Specify theNameparameter value. Save the result to the$backupvariable. - Run the
Get-VBRRestorePointReturns restore points. cmdlet. Set the$backupvariable theBackupparameter value. Save the result to the$restorepointvariable. - Run the
Get-VBRServerReturns hosts connected to the backup infrastructure. cmdlet. Specify theNameparameter value. Save the result to the$servervariable. - Run the
Find-VBRViResourcePoolReturns VMware resource pools. cmdlet. Set the$servervariable theServerparameter value. Specify theNameparameter values. Save the result to the$resourcepoolvariable. - Run the
Start-VBRLinuxFileRestoreStarts a restore session of Linux-based or Unix-based guest OS files. cmdlet. Set theRestorePointvariable theRestorePointparameter value. Set the$servervariable theServerparameter value. Set the$resourcepoolvariable theResourcePoolparameter value. Save the result to the$sessionvariable.
- Run the
- Run the
Stop-VBRLinuxFileRestorecmdlet. Set the$sessionvariable as theLinuxFlrObjectparameter value.
Related Commands
Get-VBRBackupReturns backups.Get-VBRRestorePointReturns restore points.Get-VBRServerReturns hosts connected to the backup infrastructure.Find-VBRViResourcePoolReturns VMware resource pools.Start-VBRLinuxFileRestoreStarts a restore session of Linux-based or Unix-based guest OS files.