Skip to content

Commit cce25a9

Browse files
authored
Merge pull request #18124 from MicrosoftDocs/main
6/4/2025 PM Publish
2 parents 333f37c + ed102bd commit cce25a9

File tree

2 files changed

+7
-35
lines changed

2 files changed

+7
-35
lines changed

azure-local/migrate/migrate-enable-guest-management.md

Lines changed: 2 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Enable guest management for migrated VMs (preview)
33
description: Learn how to enable guest management for migrated VMs (preview).
44
author: alkohli
55
ms.topic: how-to
6-
ms.date: 03/08/2025
6+
ms.date: 05/27/2025
77
ms.author: alkohli
88
ms.reviewer: alkohli
99
---
@@ -28,38 +28,7 @@ Before you begin, complete the following:
2828

2929
- Your system is running Azure Local release 2405 or later.
3030

31-
- Azure CLI is installed on the Azure Local instance. For instructions, see [Install the Azure CLI for Windows](/cli/azure/install-azure-cli-windows?tabs=azure-cli).
32-
33-
- Add the **stack-hci-vm** Azure extension by running PowerShell as administrator:
34-
35-
- To add the **stack-hci-vm** extension, run the following cmdlet:
36-
37-
```azurecli
38-
az extension add --name stack-hci-vm --upgrade
39-
```
40-
41-
- To verify the installation and check that the **stack-hci-vm** version is 1.1.5 or later:
42-
43-
```azurecli
44-
PS C:\Users\AzureStackAdminD> az -version
45-
{
46-
"azure-cli": "2.68.0",
47-
"azure-cli-core": "2.68.0",
48-
"azure-cli-telemetry": "1.1.0",
49-
"extensions": {
50-
"aksarc": "1.2.23",
51-
"arcappliance": "1.3.1",
52-
"connectedk8s": "1.10.5",
53-
"customlocation": "0.1.3",
54-
"k8s-extension": "1.6.3",
55-
"stack-hci-vm": "1.5.0",
56-
},
57-
"dependencies": {
58-
"msal": "1.31.1",
59-
"azure-mgmt-resource": "23.1.1",
60-
},
61-
}
62-
```
31+
- You are able to [connect to the target Azure Local instance remotely](../manage/azure-arc-vm-management-prerequisites.md#connect-to-the-system-remotely).
6332

6433
- Familiarize yourself with Azure Local VMs and guest management features and considerations - see [Enable guest management](../manage/manage-arc-virtual-machines.md#enable-guest-management).
6534

azure-stack/operator/graph-api-retirement.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,11 @@ $azureStackLegacyGraphApplications = $azureStackApplications |
8181
($_.IdentifierUris | Where-Object { $_ -like 'https://azurebridge*' }) }
8282
8383
# Find which of those applications need to have their authentication behaviors patched to allow access to legacy Graph
84-
$azureStackLegacyGraphApplicationsToUpdate = $azureStackLegacyGraphApplications |
85-
Where-Object { -not ($ab = $_.AdditionalProperties.authenticationBehaviors) -or -not $ab.ContainsKey(($key='blockAzureADGraphAccess')) -or $ab[$key] }
84+
$azureStackLegacyGraphApplicationsToUpdate = $azureStackLegacyGraphApplications | Where-Object {
85+
$oldLocationSet = $false -eq $_.AdditionalProperties.authenticationBehaviors.blockAzureADGraphAccess
86+
$newLocationNotSet = $false -eq $_.AuthenticationBehaviors.BlockAzureAdGraphAccess
87+
return (-not $oldLocationSet -and -not $newLocationNotSet)
88+
}
8689
8790
# Update the applications that require their authentication behaviors patched to allow access to legacy Graph
8891
Write-Host "Found '$($azureStackLegacyGraphApplicationsToUpdate.Count)' total Azure Stack applications which need permission to continue calling Legacy Microsoft Graph Service"

0 commit comments

Comments
 (0)