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
Copy file name to clipboardExpand all lines: articles/backup/backup-azure-manage-vms.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -194,6 +194,47 @@ To protect your data, Azure Backup includes the soft delete feature. With soft d
194
194
* These backup items remain active in the system adhering to the backup and retention policy set by the user. The backed-up data for these Azure VMs will be retained according to the retention policy. The expired recovery points (except the most recent recovery point) are cleaned according to the retention range set in the backup policy.
195
195
* To avoid any additional cost, we recommend deleting the backup items where the primary data source no longer exists. This is in a scenario where the backup item/data for the deleted resources is no longer required, since the most recent recovery point is retained forever and you're charged according to the applicable backup pricing.
196
196
197
+
## Uninstall and re-install the VMSnapshot extension on Windows operating system
198
+
199
+
To uninstall and re-install the VMSnapshot extension on Windows operating system for the backup operation, follow these steps:
200
+
201
+
1. Uninstall the `VMSnapshot` extension by running the following cmdlet:
202
+
203
+
```azurepowershell-interactive
204
+
Remove-AzVMExtension -ResourceGroupName "<Azure VM's resource group name>" -<VMName "Azure VM name>" -Name "VMSnapshot"
205
+
```
206
+
207
+
2. Sign in to the Azure VM, right-click the Windows **Start** icon to open the **Run** window, and then enter **services.msc** to open the **Services** window.
208
+
3. On the Services window, stop the **Windows Azure Guest Agent** service.
209
+
4. Go to the folder `C:\Packages\Plugins`, and then rename the folder `Microsoft.Azure.RecoveryServices.VMSnapshot` to `Microsoft.Azure.RecoveryServices.VMSnapshot_old`.
210
+
5. Right-click the Windows **Start** icon, select **Run**, and then enter **regedit** to open the **Registry Editor**.
211
+
6. On the **Registry Editor** window, go to *HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsAzure* and export to an alternate location before modifying for the backup operation.
212
+
7. Go to *HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsAzure\HandlerState*, and delete `Microsoft.Azure.RecoveryServices.VMSnapshot_1.X.XX.X`.
213
+
214
+
>[!Note]
215
+
>The plugin version **1.X.XX.X** might change based on your environment.
216
+
217
+
8. Open the **Command prompt** as **Administrator** and add the required registry entries by running the following commands:
0 commit comments