Skip to content

Commit f3fb9cd

Browse files
updated with acrolinx changes
1 parent dde7538 commit f3fb9cd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/virtual-machines/extensions/features-windows.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The Azure VM Agent manages interactions between an Azure VM and the Azure fabric
4242

4343
The Azure VM Agent is preinstalled on Azure Marketplace images. It can also be installed manually on supported operating systems.
4444

45-
The agent runs on multiple operating systems. However, the extensions framework has a [limit for the operating systems that extensions use](https://support.microsoft.com/en-us/help/4078134/azure-extension-supported-operating-systems). Some extensions are not supported across all operating systems and might emit error code 51 ("Unsupported OS"). Check the individual extension documentation for supportability.
45+
The agent runs on multiple operating systems. However, the extensions framework has a [limit for the operating systems that extensions use](https://support.microsoft.com/en-us/help/4078134/azure-extension-supported-operating-systems). Some extensions aren't supported across all operating systems and might emit error code 51 ("Unsupported OS"). Check the individual extension documentation for supportability.
4646

4747
### Network access
4848

@@ -55,7 +55,7 @@ If you use a [supported version of the Azure VM Agent](https://support.microsoft
5555
5656
Agents can only be used to download extension packages and reporting status. For example, if an extension installation needs to download a script from GitHub (Custom Script extension) or needs access to Azure Storage (Azure Backup), then you need to open additional firewall or network security group (NSG) ports. Different extensions have different requirements, because they're applications in their own right. For extensions that require access to Azure Storage or Azure Active Directory, you can allow access by using Azure NSG [service tags](../../virtual-network/network-security-groups-overview.md#service-tags).
5757

58-
The Azure VM Agent does not have proxy server support for you to redirect agent traffic requests through. That means the Azure VM Agent will rely on your custom proxy (if you have one) to access resources on the internet or on the host through IP 168.63.129.16.
58+
The Azure VM Agent doesn't have proxy server support for you to redirect agent traffic requests through. That means the Azure VM Agent relies on your custom proxy (if you have one) to access resources on the internet or on the host through IP 168.63.129.16.
5959

6060
## Discover VM extensions
6161

@@ -110,7 +110,7 @@ Set-AzVMCustomScriptExtension -ResourceGroupName "myResourceGroup" `
110110
-Run "Create-File.ps1" -Location "West US"
111111
```
112112

113-
The following example uses the [VMAccess extension](/troubleshoot/azure/virtual-machines/reset-rdp#reset-by-using-the-vmaccess-extension-and-powershell) to reset the administrative password of a Windows VM to a temporary password. After you run this code, you should reset the password at first login.
113+
The following example uses the [VMAccess extension](/troubleshoot/azure/virtual-machines/reset-rdp#reset-by-using-the-vmaccess-extension-and-powershell) to reset the administrative password of a Windows VM to a temporary password. After you run this code, you should reset the password at first sign-in.
114114

115115
```powershell
116116
$cred=Get-Credential
@@ -173,7 +173,7 @@ For more information on creating ARM templates, see [Virtual machines in an Azur
173173

174174
When you run a VM extension, it might be necessary to include sensitive information such as credentials, storage account names, and access keys. Many VM extensions include a protected configuration that encrypts data and only decrypts it inside the target VM. Each extension has a specific protected configuration schema, and each is detailed in extension-specific documentation.
175175

176-
The following example shows an instance of the Custom Script extension for Windows. The command to run includes a set of credentials. In this example, the command to run is not encrypted.
176+
The following example shows an instance of the Custom Script extension for Windows. The command to run includes a set of credentials. In this example, the command to run isn't encrypted.
177177

178178
```json
179179
{
@@ -355,7 +355,7 @@ The following troubleshooting actions apply to all VM extensions:
355355

356356
- Look at the system logs. Check for other operations that might have interfered with the extension, such as a long-running installation of another application that required exclusive access to the package manager.
357357

358-
- In a VM, if there is an existing extension with a failed provisioning state, any other new extension fails to install.
358+
- In a VM, if there's an existing extension with a failed provisioning state, any other new extension fails to install.
359359

360360
### Common reasons for extension failures
361361

0 commit comments

Comments
 (0)