├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── SECURITY.md ├── doc └── adding_new_scripts.md ├── map.json ├── src ├── linux │ ├── README.md │ ├── common │ │ ├── helpers │ │ │ ├── Logger.sh │ │ │ └── README.md │ │ └── setup │ │ │ ├── README.md │ │ │ └── init.sh │ ├── linux-alar2.sh │ ├── linux-error-test.sh │ ├── linux-hello-world.sh │ └── run-alar.sh └── windows │ ├── GA_offlinefixer_damunozl.ps1 │ ├── README.md │ ├── common │ ├── helpers │ │ ├── Get-Disk-Partitions-v2.ps1 │ │ ├── Get-Disk-Partitions.ps1 │ │ ├── Logger.ps1 │ │ └── README.md │ ├── setup │ │ ├── README.md │ │ └── init.ps1 │ └── tools │ │ ├── README.md │ │ ├── chkreg.exe │ │ └── kdbgctrl.exe │ ├── sac-enabler.ps1 │ ├── sac-os-dump-enabler.ps1 │ ├── test.ps1 │ ├── win-LKGC.ps1 │ ├── win-chkdsk-fs-corruption.ps1 │ ├── win-collect-attached-disk-logs.ps1 │ ├── win-create-troubleshooting-user.ps1 │ ├── win-crowdstrike-fix-bootloop-cvm.ps1 │ ├── win-crowdstrike-fix-bootloop-v2.ps1 │ ├── win-crowdstrike-fix-bootloop.ps1 │ ├── win-dhcp-fix.ps1 │ ├── win-dumpconfigurator.ps1 │ ├── win-enable-nested-hyperv-test.ps1 │ ├── win-enable-nested-hyperv.ps1 │ ├── win-error-test.ps1 │ ├── win-get-apps.ps1 │ ├── win-get-patches.ps1 │ ├── win-hello-world.ps1 │ ├── win-ignoreAllFailures.ps1 │ ├── win-remove-app.ps1 │ ├── win-remove-patch.ps1 │ ├── win-sfc-sf-corruption.ps1 │ ├── win-toggle-safe-mode.ps1 │ └── win-update-registry.ps1 └── tests └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/SECURITY.md -------------------------------------------------------------------------------- /doc/adding_new_scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/doc/adding_new_scripts.md -------------------------------------------------------------------------------- /map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/map.json -------------------------------------------------------------------------------- /src/linux/README.md: -------------------------------------------------------------------------------- 1 | # Linux Repair Scripts -------------------------------------------------------------------------------- /src/linux/common/helpers/Logger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/linux/common/helpers/Logger.sh -------------------------------------------------------------------------------- /src/linux/common/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/linux/common/helpers/README.md -------------------------------------------------------------------------------- /src/linux/common/setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/linux/common/setup/README.md -------------------------------------------------------------------------------- /src/linux/common/setup/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/linux/common/setup/init.sh -------------------------------------------------------------------------------- /src/linux/linux-alar2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/linux/linux-alar2.sh -------------------------------------------------------------------------------- /src/linux/linux-error-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/linux/linux-error-test.sh -------------------------------------------------------------------------------- /src/linux/linux-hello-world.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/linux/linux-hello-world.sh -------------------------------------------------------------------------------- /src/linux/run-alar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/linux/run-alar.sh -------------------------------------------------------------------------------- /src/windows/GA_offlinefixer_damunozl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/GA_offlinefixer_damunozl.ps1 -------------------------------------------------------------------------------- /src/windows/README.md: -------------------------------------------------------------------------------- 1 | # Windows Repair Scripts -------------------------------------------------------------------------------- /src/windows/common/helpers/Get-Disk-Partitions-v2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/common/helpers/Get-Disk-Partitions-v2.ps1 -------------------------------------------------------------------------------- /src/windows/common/helpers/Get-Disk-Partitions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/common/helpers/Get-Disk-Partitions.ps1 -------------------------------------------------------------------------------- /src/windows/common/helpers/Logger.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/common/helpers/Logger.ps1 -------------------------------------------------------------------------------- /src/windows/common/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/common/helpers/README.md -------------------------------------------------------------------------------- /src/windows/common/setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/common/setup/README.md -------------------------------------------------------------------------------- /src/windows/common/setup/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/common/setup/init.ps1 -------------------------------------------------------------------------------- /src/windows/common/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/common/tools/README.md -------------------------------------------------------------------------------- /src/windows/common/tools/chkreg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/common/tools/chkreg.exe -------------------------------------------------------------------------------- /src/windows/common/tools/kdbgctrl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/common/tools/kdbgctrl.exe -------------------------------------------------------------------------------- /src/windows/sac-enabler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/sac-enabler.ps1 -------------------------------------------------------------------------------- /src/windows/sac-os-dump-enabler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/sac-os-dump-enabler.ps1 -------------------------------------------------------------------------------- /src/windows/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/test.ps1 -------------------------------------------------------------------------------- /src/windows/win-LKGC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-LKGC.ps1 -------------------------------------------------------------------------------- /src/windows/win-chkdsk-fs-corruption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-chkdsk-fs-corruption.ps1 -------------------------------------------------------------------------------- /src/windows/win-collect-attached-disk-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-collect-attached-disk-logs.ps1 -------------------------------------------------------------------------------- /src/windows/win-create-troubleshooting-user.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-create-troubleshooting-user.ps1 -------------------------------------------------------------------------------- /src/windows/win-crowdstrike-fix-bootloop-cvm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-crowdstrike-fix-bootloop-cvm.ps1 -------------------------------------------------------------------------------- /src/windows/win-crowdstrike-fix-bootloop-v2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-crowdstrike-fix-bootloop-v2.ps1 -------------------------------------------------------------------------------- /src/windows/win-crowdstrike-fix-bootloop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-crowdstrike-fix-bootloop.ps1 -------------------------------------------------------------------------------- /src/windows/win-dhcp-fix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-dhcp-fix.ps1 -------------------------------------------------------------------------------- /src/windows/win-dumpconfigurator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-dumpconfigurator.ps1 -------------------------------------------------------------------------------- /src/windows/win-enable-nested-hyperv-test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-enable-nested-hyperv-test.ps1 -------------------------------------------------------------------------------- /src/windows/win-enable-nested-hyperv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-enable-nested-hyperv.ps1 -------------------------------------------------------------------------------- /src/windows/win-error-test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-error-test.ps1 -------------------------------------------------------------------------------- /src/windows/win-get-apps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-get-apps.ps1 -------------------------------------------------------------------------------- /src/windows/win-get-patches.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-get-patches.ps1 -------------------------------------------------------------------------------- /src/windows/win-hello-world.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-hello-world.ps1 -------------------------------------------------------------------------------- /src/windows/win-ignoreAllFailures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-ignoreAllFailures.ps1 -------------------------------------------------------------------------------- /src/windows/win-remove-app.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-remove-app.ps1 -------------------------------------------------------------------------------- /src/windows/win-remove-patch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-remove-patch.ps1 -------------------------------------------------------------------------------- /src/windows/win-sfc-sf-corruption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-sfc-sf-corruption.ps1 -------------------------------------------------------------------------------- /src/windows/win-toggle-safe-mode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-toggle-safe-mode.ps1 -------------------------------------------------------------------------------- /src/windows/win-update-registry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/repair-script-library/HEAD/src/windows/win-update-registry.ps1 -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- 1 | # Tests 2 | 3 | Directory for future test implementations. --------------------------------------------------------------------------------