Desativando o Boot Híbrido no Windows 8?

10

A inicialização híbrida é um processo que acelera a inicialização normal no Windows 8 (aparentemente, a inicialização é mais rápida do que nas versões anteriores do Windows)

A inicialização normal geralmente é assim:

Pré-inicialização - > Inicialização do sistema - > Inicialização da sessão do usuário

A inicialização híbrida é assim:

Pré-inicialização - > Hiberfile ler - > Inicialização do Driver - > Inicialização da sessão do usuário

A inicialização híbrida do Windows 8 adota o conceito de hibernação do computador para inicializar o sistema. Quando você hiberna, seu sistema tira um instantâneo da Inicialização do sistema para que a sessão seja usada quando ela for ativada. Isso cria um hiberfil com os dados da sessão salvos, que o Windows 8 então usa para ativar a partir dessa hibernação.

Desejo desabilitar o Boot Híbrido no Windows 8 (como li, pode causar problemas como o PC travar na inicialização) mesmo que o tempo de inicialização seja um pouco maior (como nunca foi realmente me incomodou no Windows 7 etc) e gostaria de receber orientações sobre como conseguir isso?

    
por Simon 09.10.2013 / 13:54

2 respostas

13

Existe um ótimo tutorial em hecticgeek como você pode desativar o inicialização híbrida permanentemente.

  1. Open ‘Control Panel’ and search for the below term.

    change what power buttons do

    This should open the ‘Power Options’ icon and then click on the link below it called ‘Change what the power buttons do’ to open the configuration page. enter image description here

  2. Now, at the top of this page, if you can see a blue text link called ‘Change settings that are currently unavailable’ (shown below), then click on it first, otherwise you won’t be able to change those settings.
    enter image description here

  3. Then simply scroll down and under the sub-heading ‘Shutdown settings’, remove the check mark of the option called ‘Turn on fast start-up (recommended)‘. Then click on the ‘Save changes’ button below to close the window and apply the changes.
    enter imagedescription here

Fonte

    
por 09.10.2013 / 14:03
2

Command-line methods (faster for me):

Para desativar inicialização rápida:

1- Abra elevado prompt da linha de comando.
2- Desativar Inicialização rápida :

REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_dWORD /D 0 /F

3- Desative a Hibernação :

powercfg /h off

Para reativar inicialização rápida:

1- Abra elevado prompt da linha de comando.
2- Ativar Hibernação (pré-condição):

powercfg /h on

3- Ativar Inicialização rápida :

REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_dWORD /D 1 /F
    
por 18.02.2015 / 22:32