forked from Azure/repair-script-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.json
68 lines (67 loc) · 2.72 KB
/
map.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[
{
"id" : "win-hello-world",
"path" : "src/windows/win-hello-world.ps1",
"description" : "Hello world test script"
},
{
"id" : "linux-hello-world",
"path" : "src/linux/linux-hello-world.sh",
"description" : "Hello world test script"
},
{
"id" : "win-error-test",
"path" : "src/windows/win-error-test.ps1",
"description" : "Error test script"
},
{
"id" : "linux-error-test",
"path" : "src/linux/linux-error-test.sh",
"description" : "Error test script"
},
{
"id" : "win-chkdsk-fs-corruption",
"path" : "src/windows/win-chkdsk-fs-corruption.ps1",
"description" : "Runs chkdsk to fix file system corruption"
},
{
"id" : "win-sfc-sf-corruption",
"path" : "src/windows/win-sfc-sf-corruption.ps1",
"description" : "Runs sfc to fix system file corruption"
},
{
"id" : "win-bcdedit-ignoreAllFailure",
"path" : "src/windows/win-ignoreAllFailures.ps1",
"description" : "Ignore errors if there is a failed boot, failed shutdown, or failed checkpoint. The computer will attempt to boot normally after an error occurs."
},
{
"id" : "linux-alar-fki",
"path" : "src/linux/linux-alar-fki.sh",
"description" : "alar-fki allows to recover a failed VM. Three recover scenarios are possible: fstab, initrd and kernel. NOTE: use option --run-on-repair. Se the docu for more details: https://github.com/Azure/repair-script-library/blob/master/src/linux/common/helpers/alar/README.md"
},
{
"id" : "linux-alar2",
"path" : "src/linux/linux-alar2.sh",
"description" : "alar2 allows to recover a failed VM. Various ations are available like: fstab, initrd and kernel. NOTE: use option --run-on-repair. See the docu for more details: https://github.com/Azure/repair-script-library/blob/master/src/linux/common/helpers/alar2/README.md. The script takes around 2min to run."
},
{
"id" : "win-enable-nested-hyperv",
"path" : "src/windows/win-enable-nested-hyperv.ps1",
"description" : "Enables nested hyperV using attached data disk as OS disk."
},
{
"id" : "win-toggle-safe-mode",
"path" : "src/windows/win-toggle-safe-mode.ps1",
"description" : "Disable Safe Mode if your Windows VM is booting in Safe Mode. Also activates Safe Mode if you require it (e.g. to uninstall certain software)."
},
{
"id" : "win-dumpconfigurator",
"path" : "src/windows/win-dumpconfigurator.ps1",
"description" : "Changes the dump configuration of a VM while its running without the need to reboot it. Which is to say, you can change the dump configuration from Kernel to Full without a reboot."
},
{
"id" : "win-collect-attached-disk-logs",
"path" : "src/windows/win-collect-attached-disk-logs.ps1",
"description" : "Collect OS logs from an OS disk attached to a Rescue VM as an Azure Data Disk."
}
]