From 5007c083c53cfc663c8d5fe35d8454d773c3bf32 Mon Sep 17 00:00:00 2001 From: Georg Stoifl Date: Tue, 3 Feb 2026 15:46:26 +0100 Subject: [PATCH 1/3] replace Arc gateway resource ID with Subscription ID placeholder If I copy the resource ID from Azure portal as described it has pattern /subscription/mysubscritptionID/resourceGroups/... and not /subscription/myarcgatewayID/resourceGroups/... I didn't test it, because deployment is without a proxy and I only use the ArcgatewayID - but this looks like a typo. --- azure-local/deploy/deployment-with-azure-arc-gateway.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-local/deploy/deployment-with-azure-arc-gateway.md b/azure-local/deploy/deployment-with-azure-arc-gateway.md index d9e5ff907e..89544aa28d 100644 --- a/azure-local/deploy/deployment-with-azure-arc-gateway.md +++ b/azure-local/deploy/deployment-with-azure-arc-gateway.md @@ -84,7 +84,7 @@ This article details how to register Azure Local using Azure Arc gateway and wit $ProxyBypassList = "localhost,127.0.0.1,*.contoso.com,machine1,machine2,machine3,machine4,machine5,192.168.*.*,AzureLocal-1" #Define the Arc gateway resource ID from Azure - $ArcgwId = "/subscriptions/yourarcgatewayid/resourceGroups/yourResourceGroupName/providers/Microsoft.HybridCompute/gateways/yourArcGatewayName" + $ArcgwId = "/subscriptions/yoursubscription/resourceGroups/yourResourceGroupName/providers/Microsoft.HybridCompute/gateways/yourArcGatewayName" ``` ## Step 3: Run registration script @@ -328,7 +328,7 @@ $Subscription = "yoursubscriptionID" $RG = "yourresourcegroupname" #Define the Arc gateway resource ID from Azure -$ArcgwId = "/subscriptions/yourarcgatewayid/resourceGroups/yourresourcegroupname/providers/Microsoft.HybridCompute/gateways/yourarcgatewayname" +$ArcgwId = "/subscriptions/yoursubscription/resourceGroups/yourresourcegroupname/providers/Microsoft.HybridCompute/gateways/yourarcgatewayname" ``` ## Step 3: Run the registration script From ff9cbe22384faef0482cea5e89f303d9563e6133 Mon Sep 17 00:00:00 2001 From: Georg Stoifl Date: Tue, 3 Feb 2026 15:50:41 +0100 Subject: [PATCH 2/3] add id in the name --- azure-local/deploy/deployment-with-azure-arc-gateway.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-local/deploy/deployment-with-azure-arc-gateway.md b/azure-local/deploy/deployment-with-azure-arc-gateway.md index 89544aa28d..a42deedea5 100644 --- a/azure-local/deploy/deployment-with-azure-arc-gateway.md +++ b/azure-local/deploy/deployment-with-azure-arc-gateway.md @@ -84,7 +84,7 @@ This article details how to register Azure Local using Azure Arc gateway and wit $ProxyBypassList = "localhost,127.0.0.1,*.contoso.com,machine1,machine2,machine3,machine4,machine5,192.168.*.*,AzureLocal-1" #Define the Arc gateway resource ID from Azure - $ArcgwId = "/subscriptions/yoursubscription/resourceGroups/yourResourceGroupName/providers/Microsoft.HybridCompute/gateways/yourArcGatewayName" + $ArcgwId = "/subscriptions/yoursubscriptionid/resourceGroups/yourResourceGroupName/providers/Microsoft.HybridCompute/gateways/yourArcGatewayName" ``` ## Step 3: Run registration script @@ -328,7 +328,7 @@ $Subscription = "yoursubscriptionID" $RG = "yourresourcegroupname" #Define the Arc gateway resource ID from Azure -$ArcgwId = "/subscriptions/yoursubscription/resourceGroups/yourresourcegroupname/providers/Microsoft.HybridCompute/gateways/yourarcgatewayname" +$ArcgwId = "/subscriptions/yoursubscriptionid/resourceGroups/yourresourcegroupname/providers/Microsoft.HybridCompute/gateways/yourarcgatewayname" ``` ## Step 3: Run the registration script From eac1500484d8f3f4a4b9a489565ae2c160d5e520 Mon Sep 17 00:00:00 2001 From: Georg Stoifl Date: Tue, 3 Feb 2026 19:33:55 +0100 Subject: [PATCH 3/3] Add region definition for Azure Arc registration Add region for the no proxy setup path what is used later in line 350 at the Arc onboarding script. --- azure-local/deploy/deployment-with-azure-arc-gateway.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/azure-local/deploy/deployment-with-azure-arc-gateway.md b/azure-local/deploy/deployment-with-azure-arc-gateway.md index a42deedea5..dbc7dd0dc5 100644 --- a/azure-local/deploy/deployment-with-azure-arc-gateway.md +++ b/azure-local/deploy/deployment-with-azure-arc-gateway.md @@ -324,6 +324,10 @@ $Tenant = "YourTenantID" #Define the subscription where you want to register your Azure Local machine with Arc. $Subscription = "yoursubscriptionID" +#Define the region to use to register your server as Arc device +#Do not use spaces or capital letters when defining region +$Region = "eastus" + #Define the resource group where you want to register your Azure Local machine with Arc. $RG = "yourresourcegroupname"