Skip to content

Commit 4c81c58

Browse files
authored
Merge pull request #46691 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents ca6bf6c + a962647 commit 4c81c58

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

articles/active-directory/b2b/licensing-guidance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ A B2B guest user is one that is invited from a partner organization to work with
6363

6464
## Next steps
6565

66-
See the following articles articles on Azure AD B2B collaboration:
66+
See the following articles on Azure AD B2B collaboration:
6767

6868
* [What is Azure AD B2B collaboration?](what-is-b2b.md)
6969
* [Azure Active Directory B2B collaboration frequently asked questions (FAQ)](faq.md)

articles/storage/blobs/storage-blob-soft-delete.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,13 @@ $Blobs.ICloudBlob.Properties
193193
# Undelete the blobs
194194
$Blobs.ICloudBlob.Undelete()
195195
```
196+
To find the currrent soft delete retention policy, use the following command:
197+
198+
```azurepowershell-interactive
199+
$account = Get-AzureRmStorageAccount -ResourceGroupName myresourcegroup -Name storageaccount
200+
Get-AzureStorageServiceProperty -ServiceType Blob -Context $account.Context
201+
```
202+
196203
### Azure CLI
197204
To enable soft delete, update a blob client's service properties:
198205

articles/virtual-machines/windows/convert-disk-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ $storageType = 'StandardSSD_LRS'
127127
$disk = Get-AzureRmDisk -DiskName $diskName -ResourceGroupName $rgName
128128
129129
# Get parent VM resource
130-
$vmResource = Get-AzureRmResource -ResourceId $disk.diskId
130+
$vmResource = Get-AzureRmResource -ResourceId $disk.ManagedBy
131131
132132
# Stop and deallocate the VM before changing the storage type
133-
Stop-AzureRmVM -ResourceGroupName $vm.ResourceGroupName -Name $vm.Name -Force
133+
Stop-AzureRmVM -ResourceGroupName $vmResource.ResourceGroupName -Name $vmResource.Name -Force
134134
135135
$vm = Get-AzureRmVM $vmResource.ResourceGroupName -Name $vmResource.ResourceName
136136

0 commit comments

Comments
 (0)