I'm wondering if there's a way to have a computer with UEFI and two different OSes installed (Windows 10 and Linux Mint 17.x in my case) where you don't have to wait for the system to shut down in order to select a different system to boot into.
To explain further:
The way multi-boot systems normally work is that a menu appears when the computer starts (from a uefi manager or boot loader etc) and you select an OS to boot. This menu can usually be configured to have a default, so that if left unattended it will "make a choice" on its own, or even to remember your last choice and re-use it until you make a different one (at least that was the case with legacy GRUB).
On my computer, Mint is the default and that works for most of the time. If I'm in Windows however and I want to reboot into Windows again, I have to wait for the GRUB menu to come up and select Windows, otherwise it will reboot into Mint. As shutting down can take a while (especially when installing updates) this means staying near the computer while otherwise I'd be able to step away.
Ideally, I'd like to be able to select an OS when I tell the computer to reboot.
Obviously this wouldn't be part of the standard "shut down" menu in either system, but I'm thinking it could possibly be made to happen with a script to run.
With GRUB, for example, it may be possible to have a script that changes its configuration file to set a certain system as default then starts a reboot, but that may take too long, would require root privileges and also only work from Mint.
Is there such a method, using any available boot manager (possibly rEFInd, for example) that would work from either OS without any special confirmation?
EDIT: rEFInd itself supports such a feature, apparently. Link The same page also suggests how to set the variable from Linux. Also, MSDN seems to have a method to set an EFI variable through C++ code, available in Windows 10. Link
So it seems that setting up a way to do this would be possible. I won't be able to attempt it until a few days from now, however.