Why is there no reboot option in Hyper-V?

Page 1 of 2 12 LastLast

  1. Posts : 54
    Windows 10 64bit
       #1

    Why is there no reboot option in Hyper-V?


    All I see when I right click my servers is "reset" and there is no reboot option. Reset isn't the same, right? So how can I reboot as opposed to resetting?
      My Computer


  2. Posts : 17,661
    Windows 10 Pro
       #2

    Use elevated PowerShell to manage Hyper-V. In screenshot below I have booted a vm, then restarted it and finally shut it down:

    Why is there no reboot option in Hyper-V?-image.png

    Start a vm: Start-VM "vm name"
    Restart a vm: Restart-VM "vm name"
    Shut down a vm: Stop-VM "vm name"
    Use Reset only in emergency situations when vm simply does not work, is totally frozen. It's hard reset, same as if you hold down the power button on a physical machine for a few seconds to make it turn off instead of shut down, then start the machine again.

    Kari
      My Computer


  3. Posts : 54
    Windows 10 64bit
    Thread Starter
       #3

    Kari said:
    Use elevated PowerShell to manage Hyper-V. In screenshot below I have booted a vm, then restarted it and finally shut it down:

    Why is there no reboot option in Hyper-V?-image.png

    Start a vm: Start-VM "vm name"
    Restart a vm: Restart-VM "vm name"
    Shut down a vm: Stop-VM "vm name"
    Use Reset only in emergency situations when vm simply does not work, is totally frozen. It's hard reset, same as if you hold down the power button on a physical machine for a few seconds to make it turn off instead of shut down, then start the machine again.

    Kari
    Any chance you can answer WHY there is no option to reboot? Even though it is a stated option when researching Hyper-V? So are you saying that there is no option to reboot a vm without using powershell? That makes no sense/
      My Computer


  4. Posts : 17,661
    Windows 10 Pro
       #4

    mike6623 said:
    Any chance you can answer WHY there is no option to reboot? Even though it is a stated option when researching Hyper-V? So are you saying that there is no option to reboot a vm without using powershell? That makes no sense/
    I only told you an alternative way to shut down or restart a Hyper-V VM. You mentioning Reset which is available in Action menu I thought you meant why is there no restart option in that menu.

    Of course you also restart (and shut down) a Hyper-V VM totally normally as any other Windows machine from Start > Power:

    Why is there no reboot option in Hyper-V?-image.png

    And, naturally, from right clicking Start and selecting Shut down or sign out:

    Why is there no reboot option in Hyper-V?-image.png
      My Computer


  5. Posts : 11,247
    Windows / Linux : Arch Linux
       #5

    Hi there

    Reboot actually doesn't mean anything for a VM - the terminology used is POWER OFF and POWER ON (sometimes also RESTART GUEST).

    This will shut down the VM process --you will get back to the start screen with the VM config options.

    If you want to simply reboot the OS that's usually done from WITHIN THE GUEST.

    Might not seem much of a difference - it's just the "technical terms" used within the VM context - doesn't matter what VM software you are using.

    Cheers
    jimbo
      My Computer


  6. Posts : 6
    Many many
       #6

    The manager has a "Shutdown" option in the context (right-click) menu, and, when the guest is off, it has a "Start" option. Thus it should be trivial for them to combine the two in a single menu item.

    There are often situations when I need to ensure that a half-dozen or more guests get rebooted before I leave the office. I really don't want to wait and watch each one finish shutting down before I can restart them. If I had a "Reboot" option, I could simply click reboot on each one of them and leave.
      My Computer


  7. Posts : 369
    Windows 10 x64 Pro 22H2
       #7

    As all the guys said to you, there is no such thing as a "Reboot" button for virtual machines, neither of the available options offer that, not even Virtualbox, VmWare, Hyper-V...

    This is done inside the VM, like it it was a normal computer, you got to start menu and look for shutdown options and then choose reboot... there cannot be a reboot button simply because it must need to send the reboot instruction to the VM, so the OS closes all it's tasks, frees memory and shuts down, and afterwards, commences all the booting process again.

    If you use Hyper-V, @Kari already gave you an option so you can reboot your machines all at once, but still, that resets the machine, doesn't trigger the reboot process, which is entirely different, if you restar machines willy nilly, you can cause many errors and problems with services and OS components that need a shutdown instruction to not fail.

    I use VMWare... and not even me has a button for reboots... I think that doesn't exist...
      My Computer


  8. Posts : 668
    Win 10 pro
       #8

    KVM has the restart option "button" so there is such thing in the realm of VM:

    Why is there no reboot option in Hyper-V?-reboot.png


    but if you need to restart several machine you better go
    with a script in powershell
      My Computer


  9. Posts : 56,823
    Multi-boot Windows 10/11 - RTM, RP, Beta, and Insider
       #9

    FerchogtX said:
    As all the guys said to you, there is no such thing as a "Reboot" button for virtual machines, neither of the available options offer that, not even Virtualbox, VmWare, Hyper-V...

    This is done inside the VM, like it it was a normal computer, you got to start menu and look for shutdown options and then choose reboot... there cannot be a reboot button simply because it must need to send the reboot instruction to the VM, so the OS closes all it's tasks, frees memory and shuts down, and afterwards, commences all the booting process again.

    If you use Hyper-V, @Kari already gave you an option so you can reboot your machines all at once, but still, that resets the machine, doesn't trigger the reboot process, which is entirely different, if you restar machines willy nilly, you can cause many errors and problems with services and OS components that need a shutdown instruction to not fail.

    I use VMWare... and not even me has a button for reboots... I think that doesn't exist...




    roy111 said:
    KVM has the restart option "button" so there is such thing in the realm of VM:

    Why is there no reboot option in Hyper-V?-reboot.png


    but if you need to restart several machine you better go
    with a script in powershell
    Semantics, really. Since VMs live as a Guest under the Host, the term "Reboot" applies to the host system. In any virtual system, the term usually seen is "Restart Guest", or something of that nature. Which will re-initialize the Guest as if you had "Booted" it. Just words. An example from VMWare on my machine:

    Why is there no reboot option in Hyper-V?-2017-10-12_05h50_34.png
      My Computers


  10. Posts : 668
    Win 10 pro
       #10

    f14tomcat said:
    Semantics, really. Since VMs live as a Guest under the Host, the term "Reboot" applies to the host system. In any virtual system, the term usually seen is "Restart Guest", or something of that nature. Which will re-initialize the Guest as if you had "Booted" it. Just words. An example from VMWare on my machine:

    Why is there no reboot option in Hyper-V?-2017-10-12_05h50_34.png
    It's not semantic it's a very different feature, that operation would possibly damage the guest OS, and does not perform a clean reboot
    you also get a warning if you try to use it:


    Why is there no reboot option in Hyper-V?-hard_reset.png

    it is very different from a clean reboot that safely disable all guest OS services to perform a clean reboot
    (probably what the OP is looking for)
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 00:54.
Find Us




Windows 10 Forums