RonLar wrote: Isn't the whole point of a setting called "GetHostTimeDisabled" to stop it from asking the time from the host?
Yes it is.
Once it's up and running, not at boot! If you were to keep it frozen like you have in your mind, then something on the host must be keeping track of when you shut it down last time, and set the time at boot for the virtualBIOS. No such mechanism exists.
What this key does is to tell it
"Hey, if I change the time manually in the guest, don't change it for me". Oh, and BTW, this applies only to guests with Guest Additions (GAs) installed. The rest get the time once from the host (when they boot) and then they're on their own...
RonLar wrote:I'd like to first point out that these are valid and licensed installations
You read my mind!
RonLar wrote:so I keep a minimal, encrypted, and guaranteed clean Win 10 system
I understand most of it, except the encrypted part. Why encrypted? You're afraid that your virtual HD is going to get affected?
RonLar wrote:it goes through the entire maintenance and update procedure, on an encrypted disk, with no AES hardware support in the CPU, and it is unbearably slow.
Out of curiosity, what does that even mean?
RonLar wrote:To minimize this I want the guest to believe only a second has passed since I last turned it off.
And now we're getting to the gist of your question. You can't do this automatically, you have to do it manually. There is a command that can set the time offset that a VM gets from the BIOS each time it starts:
VBoxManage modifyvm "<VMname>" --biossystemtimeoffset <ms>
- This specifies a fixed time offset (milliseconds) of the guest relative to the host time. If the offset is positive, the guest time runs ahead of the host time.
Now, you can use this command right before you launch your VM, but you got to keep track of the time outside VirtualBox, like in your notebook or post-it note stuck on your monitor...
For examples of how people have used it, search for "
biossystemtimeoffset site:forums.virtualbox.org", or even "
biossystemtimeoffset script site:forums.virtualbox.org" for a script or two.