Skip to content

Commit

Permalink
Merge pull request #311 from MicrosoftDocs/main
Browse files Browse the repository at this point in the history
10/07/2024 AM Publish
  • Loading branch information
Albertyang0 authored Oct 7, 2024
2 parents 8110040 + 7b6f77d commit 9b97ce8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion articles/virtual-machines/extensions/agent-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,11 @@ You can manually install the Azure Windows VM Agent by using a Windows Installer
To manually install the Azure Windows VM Agent, [download the installer](https://github.com/Azure/WindowsVMAgent) and select the latest release. You can also search for a specific version in the [GitHub page for Azure Windows VM Agent releases](https://github.com/Azure/WindowsVMAgent/releases). The Azure Windows VM Agent is supported on Windows Server 2008 (64 bit) and later.

> [!NOTE]
> It's important to update the `AllowExtensionOperations` option after you manually install the Azure Windows VM Agent on a VM that was deployed from image without `ProvisionVMAgent` enabled.
> - If a VM was created from a custom or Marketplace image without `ProvisionVMAgent` enabled, then it is important to update the `AllowExtensionOperations` to `true` after you manually install the Azure Windows VM Agent.
> - This is NOT required if the VM was created from a specialized disk. For example, if the VM was created directly from an existing disk.
```powershell
$vm = Get-AzVM -Name <VM Name> -ResourceGroupName <Resource Group Name>
$vm.OSProfile.AllowExtensionOperations = $true
$vm | Update-AzVM
```
Expand Down

0 comments on commit 9b97ce8

Please sign in to comment.