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
In the following example, the VM Access extension is used to reset the administrative password of a Windows VM to a temporary password. For more information on the VM Access extension, see [Reset Remote Desktop service in a Windows VM](/troubleshoot/azure/virtual-machines/reset-rdp). Once you have run this, you should reset the password at first login:
119
+
In the following example, the VM Access extension is used to reset the administrative password of a Windows VM to a temporary password. For more information on the VM Access extension, see [Reset Remote Desktop service in a Windows VM](/troubleshoot/azure/virtual-machines/reset-rdp). After you have run this, you should reset the password at first login:
120
120
121
121
```powershell
122
122
$cred=Get-Credential
@@ -247,9 +247,9 @@ These certificates secure the communication between the VM and its host during t
247
247
248
248
### How do agents and extensions get updated?
249
249
250
-
The Agents and Extensions share the same automatic update mechanism.
250
+
Agents and extensions share the same automatic update mechanism.
251
251
252
-
When an update is available and automatic updates are enabled, the update is only installed on the VM once there is a change to extensions, and other VM Model changes such as:
252
+
When an update is available and automatic updates are enabled, the update is installed on the VM only after there is a change to an extension or other VM model changes, such as:
253
253
254
254
- Data disks
255
255
- Extensions
@@ -259,12 +259,12 @@ When an update is available and automatic updates are enabled, the update is onl
259
259
- Network profile
260
260
261
261
> [!IMPORTANT]
262
-
> The update is only installed once there is a change to the VM model.
262
+
> The update is installed only after there is a change to the VM model.
263
263
264
264
Publishers make updates available to regions at different times, so it is possible you can have VMs in different regions on different versions.
265
265
266
266
> [!NOTE]
267
-
> Some updates may require additional firewall rules. See [Network access](#network-access).
267
+
> Some updates might require additional firewall rules. See [Network access](#network-access).
268
268
269
269
#### Listing Extensions Deployed to a VM
270
270
@@ -290,9 +290,9 @@ To check what version you are running, see [Detecting installed Windows Guest Ag
290
290
#### Extension updates
291
291
292
292
293
-
When an extension update is available and automatic updates are enabled, once a [change to the VM model](#how-do-agents-and-extensions-get-updated) occurs, the Windows Guest Agent downloads and upgrades the extension.
293
+
When an extension update is available and automatic updates are enabled, after a [change to the VM model](#how-do-agents-and-extensions-get-updated) occurs, the Windows Guest Agent downloads and upgrades the extension.
294
294
295
-
Automatic extension updates are either *Minor* or *Hotfix*. You can opt in or opt out of extensions*Minor* updates when you provision the extension. The following example shows how to automatically upgrade minor versions in a Resource Manager template with *"autoUpgradeMinorVersion": true,*:
295
+
Automatic extension updates are either *Minor* or *Hotfix*. You can opt in or opt out of extension*Minor* updates when you provision the extension. The following example shows how to automatically upgrade minor versions in a Resource Manager template with *"autoUpgradeMinorVersion": true,*:
296
296
297
297
```json
298
298
"properties": {
@@ -309,7 +309,7 @@ Automatic extension updates are either *Minor* or *Hotfix*. You can opt in or op
309
309
310
310
To get the latest minor release bug fixes, it is highly recommended that you always select auto update in your extension deployments. Hotfix updates that carry security or key bug fixes cannot be opted out.
311
311
312
-
If you disable extension automatic updates or you need to upgrade major version, use [Set-AzVMExtension](/powershell/module/az.compute/set-azvmextension) and specify target version.
312
+
If you disable extension automatic updates or you need to upgrade a major version, use [Set-AzVMExtension](/powershell/module/az.compute/set-azvmextension) and specify the target version.
313
313
314
314
### How to identify extension updates
315
315
@@ -430,4 +430,4 @@ You can also remove an extension in the Azure portal as follows:
430
430
431
431
## Next steps
432
432
433
-
For more information about VM extensions, see [Azure virtual machine extensions and features overview](overview.md).
433
+
For more information about VM extensions, see [Azure virtual machine extensions and features overview](overview.md).
0 commit comments