Change the RTC date before booting #1407
-
|
Hi. I want to run Windowx 9x beta versions on v86. They are date protected so when I run the imagen, I get an error saying the version has expired. How do I change the RTC date using libv86.js? If that's not possible, how do I do that using the index.html provided along with the v86_all.js? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Here is my experimental patch: SuperMaxusa@7b39186 (download from artifacts) To use it with libv86, add the var emulator = new V86({
<...>
utc_base: new Date("1995-01-02T10:11:00Z"),
});The option in the UI is not implemented. Tested on MS-DOS, but I can't guarantee it will work with beta "timebombs". |
Beta Was this translation helpful? Give feedback.
Here is my experimental patch: SuperMaxusa@7b39186 (download from artifacts)
To use it with libv86, add the
utc_baseparameter (asDateobject) inV86constructor. Example:The option in the UI is not implemented. Tested on MS-DOS, but I can't guarantee it will work with beta "timebombs".