How to get "Update and Shutdown" instead of "Update and Restart" on Windows 8

41,213

Solution 1

It appears that Microsoft has added an "Update and Shutdown" option into Windows 8.1. Hopefully it is here to stay in future versions of the operating system.

Solution 2

From This question on SO, you can update and shutdown with (just tested and worked fine):

shutdown -t 0 -s -f 

It does not show the option on the menu, but does the job!

Solution 3

You need to disable hybrid boot in order to get the 'update and shutdown' to become visible. This is because hybrid boot speeds up the time to shut down your computer, and giving you the option to install updates with a shutdown will make the computer turn off slowly.

This shows how to disable hybrid boot in order to enable the 'update and shutdown': http://www.maketecheasier.com/disable-hybrid-boot-and-shutdown-in-windows-8/

Solution 4

This probably cause in your scenario is the new Hybrid Shutdown mode offered by Windows 8. I’ve seen this happen on a system where hibernation had been previously disabled, causing some confusion when the system was upgraded with the new shutdown procedure which uses a new form of hibernation which has then failed to work.

Solution :

Open up a command prompt as Administrator and type

powercfg /H on

Hope It works for you.

Share:
41,213

Related videos on Youtube

User5910
Author by

User5910

Updated on September 18, 2022

Comments

  • User5910
    User5910 almost 2 years

    After installing updates which require a reboot, the Windows 8 Power button shows "Update and Restart". What I really want is "Update and Shutdown". How can I get this option to appear? I didn't realize it even existed until I saw it on my system where only "Update and Shutdown" had been available. I gathered this happened because I did not install pending updates for a day or so. Shift/Ctrl/Alt clicking on the choices bring no new options.

    There is a group policy which has been around since XP SP2 which will prevent this from showing up, but I have not found a way to force it to show whenever updates are pending. The thread No more update at shutdown? in Microsoft Community discusses this issue as well.

    Digging further I found the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\Power\OfferInstallAtShutdown-Final which looks related but could not find any documentation for it. It is set to 0x28 on my system. When I changed it to 0x01 it came back after reboot as 0x28. When I changed it to 0xff it stuck after reboot but neither option changed my Power button options.

    Reading Minimizing restarts after automatic updating in Windows Update I see that Install at shutdown is a popular option. Is it not offered when the updates require more work after restarting?

    This superuser thread is related: How can I install updates and shut down from the command line?

    [edit 9/12/2013] Using shutdown.exe /s /t 0 from the command line as suggested by @Vargas below installed the update and shut down as desired when Power>Shutdown did not. The real question remains which is how can this be done consistently through the GUI?

    • magicandre1981
      magicandre1981 over 11 years
      The default shutdown is the is new hibernation boot and Windows needs to do a reboot to get the old Shutdown where it can install the updates.
    • magicandre1981
      magicandre1981 over 11 years
      the full flag was removed in the CP/RP. Now the shutdown.exe does a normal/full shutdown by default. If you want the new start, you must use the /hybrid flag.
  • User5910
    User5910 over 11 years
    Thanks for the suggestion. I already have hibernate enabled though.
  • Aleksei Poliakov
    Aleksei Poliakov almost 10 years
    From the documentation: /f Force running applications to close without forewarning users. The /f parameter is implied when a value greater than 0 is specified for the /t parameter. So this does not make sense to do -t 0 and -f
  • Bob Sammers
    Bob Sammers over 9 years
    @DarkWalker, that's not my reading of the doc: since /t 0 is specified (i.e. /t value is not > 0), you do need to specify /f if you want it
  • Aleksei Poliakov
    Aleksei Poliakov over 9 years
    @BobSammers You are correct!
  • DavidPostill
    DavidPostill over 9 years
    Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
  • fixer1234
    fixer1234 over 9 years
    The question asks how to get update and shutdown instead of update and restart, not how to disable hybrid boot and shutdown.
  • Quintonn
    Quintonn over 9 years
    This fix is what enables "update and shutdown". update and shutdown is disabled because of hybrid boot
  • Ramhound
    Ramhound over 9 years
    @Quintonn - Without the relevant information in the question itself this answer isn't that helpful.
  • Quintonn
    Quintonn over 9 years
    So because there might be info missing in the question you down vote my answer?
  • Quintonn
    Quintonn over 9 years
    Considering this is the question: "The real question remains which is how can this be done consistently through the GUI?" I believe my answer gives one of many answers. I had this same problem and my solution fixed it for me on windows 8.1, twice (i formatted my pc recently)
  • User5910
    User5910 about 9 years
    I hoped this was the case but I ran into the same issue again this week. There is some improvement though--after opening Windows Update and installing pending updates, the Power>Shutdown option turned into Power>Update and Shutdown.