You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For more information on available images see [Find and use Azure Marketplace VM images with Azure PowerShell](./cli-ps-findimage.md)
70
+
For more information on available images, see [Find and use Azure Marketplace VM images with Azure PowerShell](./cli-ps-findimage.md)
71
71
72
72
## Uploading Windows 11 VHD to Azure
73
-
If you are uploading a generalized Windows 11 VHD, note Windows 11 does not have built-in administrator account enabled by default. To enable the built-in administrator account, include the following command as part of the Custom Script extension.
73
+
If you're uploading a generalized Windows 11 VHD, note Windows 11 doesn't have built-in administrator account enabled by default. To enable the built-in administrator account, include the following command as part of the Custom Script extension.
74
74
75
75
```powershell
76
76
Net user <username> /active:yes
@@ -91,7 +91,7 @@ For more information:
91
91
92
92
93
93
## Deploying Windows 11 with Multitenant Hosting Rights
94
-
Make sure you have [installed and configured the latest Azure PowerShell](/powershell/azure/). Once you have prepared your VHD, upload the VHD to your Azure Storage account using the `Add-AzVhd` cmdlet as follows:
94
+
Make sure you've [installed and configured the latest Azure PowerShell](/powershell/azure/). Once you've prepared your VHD, upload the VHD to your Azure Storage account using the `Add-AzVhd` cmdlet as follows:
**Deploy using Azure Resource Manager Template Deployment**
103
-
Within your Resource Manager templates, an additional parameter for `licenseType` can be specified. You can read more about [authoring Azure Resource Manager templates](../../azure-resource-manager/templates/syntax.md). Once you have your VHD uploaded to Azure, edit you Resource Manager template to include the license type as part of the compute provider and deploy your template as normal:
103
+
Within your Resource Manager templates, an additional parameter for `licenseType` can be specified. You can read more about [authoring Azure Resource Manager templates](../../azure-resource-manager/templates/syntax.md). Once you've your VHD uploaded to Azure, edit your Resource Manager template to include the license type as part of the compute provider and deploy your template as normal:
104
104
```json
105
105
"properties": {
106
106
"licenseType": "Windows_Client",
@@ -110,13 +110,14 @@ Within your Resource Manager templates, an additional parameter for `licenseType
110
110
```
111
111
112
112
**Deploy via PowerShell**
113
-
When deploying your Windows Server VM via PowerShell, you have an additional parameter for `-LicenseType`. Once you have your VHD uploaded to Azure, you create a VM using `New-AzVM` and specify the licensing type as follows:
113
+
When deploying your Windows Server VM via PowerShell, you've an another parameter for `-LicenseType`. Once you've your VHD uploaded to Azure, you create a VM using `New-AzVM` and specify the licensing type as follows:
## Verify your VM is utilizing the licensing benefit
119
-
Once you have deployed your VM through either the PowerShell or Resource Manager deployment method, verify the license type with `Get-AzVM` as follows:
120
+
Once you've deployed your VM through either the PowerShell or Resource Manager deployment method, verify the license type with `Get-AzVM` as follows:
## Additional Information about joining Azure Active Directory
141
-
Azure provisions all Windows VMs with built-in administrator account, which cannot be used to join Azure Active Directory. For example, *Settings > Account > Access Work or School > +Connect* will not work. You must create and log on as a second administrator account to join Azure AD manually. You can also configure Azure AD using a provisioning package, use the link in the *Next Steps* section to learn more.
142
+
Azure provisions all Windows VMs with built-in administrator account, which can't be used to join Azure Active Directory. For example, *Settings > Account > Access Work or School > +Connect* won't work. You must create and log on as a second administrator account to join Azure AD manually. You can also configure Azure AD using a provisioning package, use the link in the *Next Steps* section to learn more.
142
143
143
144
## Next Steps
144
145
- Learn more about [Configuring VDA for Windows 11](/windows/deployment/vda-subscription-activation)
0 commit comments