Secure Boot?
Last active
March 29, 2016 01:59
-
-
Save spencermathews/8ac9f897ccd4be5112f9 to your computer and use it in GitHub Desktop.
System Configuration
Basic system configuration and dual boot info
powercfg /a
Ref:
Pagefile.sys
It's not smart to mount a Windows partition from another OS while Windows is hibernated! If you don't automount the Windows partition it may not be a problem.
Disable hibernate (from administrator prompt):
powercfg /hibernate off # or /hibernate, dashes work too
This should also delete Hiberfil.sys
.
Reference: How to disable and re-enable hibernation on a computer that is running Windows
Fast Boot, originating in Windows 8, relies on UEFI. Configure in BIOS.
Fast Startup requires hibernate mode is enabled.
Configure Fast Startup from Power Options / Power Buttons or:
powercfg -h on
REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_dWORD /D 1 /F
REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_dWORD /D 0 /F
Confirm-SecureBootUEFI
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment