You can upload the Unified Access Gateway .vhd image to Azure.
Procedure
-
Download a Unified Access Gateway
.vhdimage file of the specific Unified Access Gateway version from Customer Connect. -
Use the following example PowerShell commands to upload the
.vhdimage to thevhdscontainer created earlier.$imageURI = "https://<storage_account_name>.blob.core.windows.net/vhds/euc-unified-access-gateway-3.4.0.0-11037344_OVF10.vhd"$imagePath = "E:\UAGImages\euc-unified-access-gateway-3.4.0.0-11037344_OVF10.vhd"PowerShell 5:
Set-Item -Path Env:\SuppressAzureRmModulesRetiringWarning -Value $true Add-AzureRmVhd -ResourceGroupName $resourceGroup -LocalFilePath $imagePath ` -Destination $imageURI -NumberOfUploaderThreads 32PowerShell 7:
Add-AzVhd -ResourceGroupName $resourceGroup -LocalFilePath $imagePath ` -Destination $imageURI -NumberOfUploaderThreads 32
Was this page helpful?