File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed
Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 22Release History
33===============
44
5+ 2.1.1
6+ ++++++
7+ Updated README file for `vm repair ` extension.
8+
592.1.0
610++++++
711Added new parameter `--os-disk-type ` to `vm repair create ` to let users specify the repair vm's os disk storage account type.
Original file line number Diff line number Diff line change 11# Azure CLI VM Repair Extension #
2- This is a extension for repairing VMs.
2+ This is an extension for repairing VMs. Usually this is used to repair VMs that cannot boot by copying the
3+ OS Disk to a separate repair VM copy and run [ repair scripts] ( https://github.com/Azure/repair-script-library ) against it.
4+ VM Repair can also run repair scripts against the source VM itself.
5+ You can also create then run your own custom repair scripts, seen in the ` --custom-script-file ` parameter in the ` az vm repair run ` command.
36
47### How to use ###
58Install this extension using the below CLI command
@@ -8,11 +11,15 @@ az extension add --name vm-repair
811```
912
1013### Sample Commands ###
11- Repair create command
14+ Create repair VM command
1215```
1316az vm repair create -g MyResourceGroup -n myVM --verbose
1417```
15- Restore command
18+ Run a repair script on the new repair VM
19+ ```
20+ az vm repair run -g MyResourceGroup -n MySourceWinVM --run-id win-hello-world --run-on-repair --verbose
21+ ```
22+ Restore the now fixed copied OS disk from the repair VM to the original VM
1623```
1724az vm repair restore -g MyResourceGroup -n myVM --verbose
18- ```
25+ ```
Original file line number Diff line number Diff line change 88from codecs import open
99from setuptools import setup , find_packages
1010
11- VERSION = "2.1.0 "
11+ VERSION = "2.1.1 "
1212
1313CLASSIFIERS = [
1414 'Development Status :: 4 - Beta' ,
You can’t perform that action at this time.
0 commit comments