Difference between revisions of "VIRTUAL BOX - Force VM bios time in the past to use expired license"

From GUILLARD WIKI
Jump to navigation Jump to search
Line 3: Line 3:
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
VBoxManage setextradata LaBaule "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" 1
VBoxManage setextradata LaBaule "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" 1
<syntaxhighlight/>
</syntaxhighlight>


2) Remove the additional time from current date in ms to return in the past
2) Remove the additional time from current date in ms to return in the past
Line 10: Line 10:
VBoxManage modifyvm LaBaule --biossystemtimeoffset -25920000000
VBoxManage modifyvm LaBaule --biossystemtimeoffset -25920000000
VBoxManage startvm LaBaule
VBoxManage startvm LaBaule
<syntaxhighlight/>
</syntaxhighlight>

Revision as of 14:35, 18 April 2018

1) Stop the bios time synchronization

VBoxManage setextradata LaBaule "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" 1

2) Remove the additional time from current date in ms to return in the past

VBoxManage modifyvm LaBaule --biossystemtimeoffset -25920000000
VBoxManage startvm LaBaule