Posted On November 19, 2021

How To Disable Startup Automatic Repair

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How To Disable Startup Automatic Repair
Problem:

Sometimes, a certain virtual machine would not boot correctly when it’s being moved between Hyper-V hosts. An error such as this would result

Resolution:

Addressing the root cause of unplanned reboots is beyond the scope of this blog. The following command would ensure that those guest VMs would not load automatic repair upon abrupt shutdowns.

write-host "Disabling Automatic Startup Repair..."
$null=cmd.exe /c "bcdedit /set {default} recoveryenabled No"
$null=cmd.exe /c "bcdedit /set {default} bootstatuspolicy ignoreallfailures"
 
Note: command cannot be invoked in PowerShell directly; hence the cmd.exe call is necessary

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

User Profile Hive Cleanup Service

The User Profile Hive Cleanup service helps to ensure user sessions are completely terminated when…

How To Upgrade NextCloud 22.1.1 to 22.2.0 When Deployed with Kubernetes & Helm

Step 1: Navigate to nextcloud > html > edit version.php <?php $OC_Version = array(22,1,1,2); $OC_VersionString…

PowerShell: Install Apps On List of Computers

[string[]]$computers=@( 'SERVER01', 'SERVER02', 'SERVER03' ) [string]$chocoAppName='notepad2' [version]$minVersion='4.2.25.20160422' $results=[hashtable]@{} foreach ($computer in $computers){ $result=invoke-command -computer $computer…