O desligamento do Windows 8 é realmente uma forma de hibernação, o que significa que você não terá acesso às funções do BIOS ao ligar, ele postará, mas irá diretamente para o arquivo de hibernação para inicializar. Eles fizeram isso para acelerar os tempos de inicialização, uma reinicialização não terá esse comportamento, portanto, para inicializar a partir de uma fonte diferente, você deve reiniciar.
Se você executar este comando a partir do prompt de comando, ele chamará um desligamento completo e completo.
shutdown /s /full / t 0
.
The key thing to remember though is that in a traditional shutdown, we close all of the user sessions, and in the kernel session we close services and devices to prepare for a complete shutdown.
Now here’s the key difference for Windows 8: as in Windows 7, we close the user sessions, but instead of closing the kernel session, we hibernate it. Compared to a full hibernate, which includes a lot of memory pages in use by apps, session 0 hibernation data is much smaller, which takes substantially less time to write to disk. If you’re not familiar with hibernation, we’re effectively saving the system state and memory contents to a file on disk (hiberfil.sys) and then reading that back in on resume and restoring contents back to memory. Using this technique with boot gives us a significant advantage for boot times, since reading the hiberfile in and reinitializing drivers is much faster on most systems (30-70% faster on most systems we’ve tested).
.