Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/powershell/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Azure Powershell:还原服务备份还原位置_Powershell_Azure_Azure Powershell - Fatal编程技术网

Azure Powershell:还原服务备份还原位置

Azure Powershell:还原服务备份还原位置,powershell,azure,azure-powershell,Powershell,Azure,Azure Powershell,我可以使用Restore AzureRmRecoveryServicesBackupItem发出启动恢复作业的请求,该请求将给定的恢复点(在本例中为VHD)恢复到提供的存储帐户。有没有办法从AzureRM API或Powershell commandlets派生blob正在写入的位置 获取恢复作业: $recoveryJob = Restore-AzureRmRecoveryServicesBackupItem ` -RecoveryPoint $recoveryPoint ` -Sto

我可以使用
Restore AzureRmRecoveryServicesBackupItem
发出启动恢复作业的请求,该请求将给定的恢复点(在本例中为VHD)恢复到提供的存储帐户。有没有办法从AzureRM API或Powershell commandlets派生blob正在写入的位置

获取恢复作业:

$recoveryJob = Restore-AzureRmRecoveryServicesBackupItem `
  -RecoveryPoint $recoveryPoint `
  -StorageAccountName $storageAccount.name `
  -StorageAccountResourceGroupName $storageAccount.resourceGroupName

。。。但是,
$recoveryJob
没有存储目标
Get-AzureRmRecoveryServicesBackupJobDetails
也没有提供此信息,我也没有主意。

我不明白,您想写入特定blob吗?不,您没有写入特定blob的选项。我想知道命令选择的名称。