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
(Created page with "1) Stop the bios time synchronization VBoxManage setextradata LaBaule "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" 1 2) Remove the additional time from current...")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
1) Stop the bios time synchronization
1) Stop the bios time synchronization


VBoxManage setextradata LaBaule "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" 1
<syntaxhighlight lang="javascript">
VBoxManage setextradata _TimeMachineName "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" 1
</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


VBoxManage modifyvm LaBaule --biossystemtimeoffset -25920000000
<syntaxhighlight lang="javascript">
VBoxManage startvm LaBaule
VBoxManage modifyvm _TimeMachineName --biossystemtimeoffset -25920000000
VBoxManage startvm _TimeMachineName
</syntaxhighlight>

Latest revision as of 14:36, 18 April 2018

1) Stop the bios time synchronization

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

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

VBoxManage modifyvm _TimeMachineName --biossystemtimeoffset -25920000000
VBoxManage startvm _TimeMachineName