BetaArchive Logo
Total Current Archive Size: 4925.26GB in 15820 files
Navigation Home Screenshots Image Uploader Server Info FTP Servers Wiki Forum RSS Feed Rules Please Donate
UP: 5d, 4h, 36m | CPU: 10% | MEM: 4148MB of 12279MB used
{The community for beta collectors}

Post new topic Reply to topic  [ 16 posts ] 
Author Message
 PostPost subject: [TUT] Changing the BIOS date in Virtual PC and VMWare        Posted: Sun Jul 15, 2007 3:56 am 
Site Moderator
Site Moderator
Offline

Joined
Sat Feb 24, 2007 4:14 pm

Posts
5932

Location
United Kingdom

Favourite OS
Server 2012
In Virtual PC:
Changing the BIOS date in virtual PC can be done very easily by entering the emulated BIOS. However, to make it keep that date after a reboot, you need to edit your vmc file.

1. Locate your .vmc file, and open it in notepad. Make sure Virtual PC is closed so you can save your edited file.

2. As you can see, its a standard XML file. All you need to do is insert
Code:
<components>
   <host_time_sync>
      <enabled>false</enabled>
   </host_time_sync>
</components>


Inside the <integration> and <microsoft> tags, like shown below:
Image

3. You can now change your time and date in the emulated bios, and now the clock should not revert to the host time after a reboot.

In VMWare
Open your .vmx configuration file. All you need to do is place the following lines of code anywhere in this text file.

Code:
tools.syncTime = "FALSE"
time.synchronize.continue = "FALSE"
time.synchronize.restore = "FALSE"
time.synchronize.resume.disk = "FALSE"
time.synchronize.shrink = "FALSE"


If you have any problems, place them below.

_________________
ImageImage
Windows Longhorn - a look at a defining Microsoft project | Reverse Engineering - Get started with these guides


Last edited by hounsell on Wed Oct 31, 2007 8:08 pm, edited 3 times in total.

Top  Profile  WWW
 PostPost subject:        Posted: Sun Jul 15, 2007 12:31 pm 
Amateur Beta Collector
Amateur Beta Collector
User avatar
Offline

Joined
Sat Jul 07, 2007 3:21 pm

Posts
73

Location
Brazil
Thx man, that's very useful, I will give a try later :]

_________________
Joost Invites Request - Click here (include your email)
Torrentleech Invites Request - Click here (include your email)


Top  Profile  YIM
 PostPost subject:        Posted: Sun Jul 15, 2007 6:28 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Sat May 12, 2007 1:05 pm

Posts
5236

Location
The Collection Book

Favourite OS
Everything Microsoft!
I have tested it and it works on my end.
You only need this code:

Quote:
Code:
<components>

<host_time_sync>

<enabled>false</enabled>

</host_time_sync>

</components>


And dont need the:
Code:
Type ="boolean"

otherwise my virtual pc doesnt boot any more.

Thanks


Top  Profile  WWW
 PostPost subject:        Posted: Sun Jul 15, 2007 10:25 pm 
Site Moderator
Site Moderator
Offline

Joined
Sat Feb 24, 2007 4:14 pm

Posts
5932

Location
United Kingdom

Favourite OS
Server 2012
DjRob wrote:
I have tested it and it works on my end.
You only need this code:

Quote:
Code:
<components>

<host_time_sync>

<enabled>false</enabled>

</host_time_sync>

</components>


And dont need the:
Code:
Type ="boolean"

otherwise my virtual pc doesnt boot any more.

Thanks


This depends on the version of Virtual PC that you're using...

_________________
ImageImage
Windows Longhorn - a look at a defining Microsoft project | Reverse Engineering - Get started with these guides


Top  Profile  WWW
 PostPost subject:        Posted: Sun Jul 15, 2007 10:37 pm 
how do to that in vmware?


Top
 PostPost subject:        Posted: Sun Jul 15, 2007 10:39 pm 
1337 Beta Collector
1337 Beta Collector
Offline

Joined
Sat Sep 30, 2006 5:00 pm

Posts
3615
Namronia wrote:
how do to that in vmware?

It should be enough to change the date in the VM's BIOS (you know how to enter that, do you?) and to disable the time sync feature in VMware's preferences.


Top  Profile
 PostPost subject:        Posted: Sun Jul 15, 2007 10:47 pm 
Site Moderator
Site Moderator
Offline

Joined
Sat Feb 24, 2007 4:14 pm

Posts
5932

Location
United Kingdom

Favourite OS
Server 2012
I had to edit the configuration (.vmx) file and place the following at the bottom:
Code:
tools.syncTime = "FALSE"
time.synchronize.continue = "FALSE"
time.synchronize.restore = "FALSE"
time.synchronize.resume.disk = "FALSE"
time.synchronize.shrink = "FALSE"


Adding this to the first post

_________________
ImageImage
Windows Longhorn - a look at a defining Microsoft project | Reverse Engineering - Get started with these guides


Top  Profile  WWW
 PostPost subject:        Posted: Wed Oct 31, 2007 2:53 pm 
Ex OSBA Member
Ex OSBA Member
User avatar
Offline

Joined
Thu Aug 24, 2006 8:03 am

Posts
1120

Location
Germany
sorry for bumping the thread.

But the trick doesn't work for Virtual PC 2007. I've insert the entry with and without type="boolean", but the Date is always set to the current date :(

_________________
"Theory is when you know something, but it doesn't work. Practice is when something works, but you don't know why. Programmers combine theory and practice: Nothing works and they don't know why."


Top  Profile
 PostPost subject:        Posted: Wed Oct 31, 2007 2:58 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Sat May 12, 2007 1:05 pm

Posts
5236

Location
The Collection Book

Favourite OS
Everything Microsoft!
Then your VPC 2007 is not good.
Its works.
With the boolean insert.

But have insert it in the right place?

_________________
Image
Don't forget to check out our Official The Collection Book IRC Channel
Subscribe to our Image and like us on Image


Top  Profile  WWW
 PostPost subject:        Posted: Wed Oct 31, 2007 3:05 pm 
Site Moderator
Site Moderator
Offline

Joined
Sat Feb 24, 2007 4:14 pm

Posts
5932

Location
United Kingdom

Favourite OS
Server 2012
:?
For me, with the type="boolean" works in Virtual PC 2007.

_________________
ImageImage
Windows Longhorn - a look at a defining Microsoft project | Reverse Engineering - Get started with these guides


Top  Profile  WWW
 PostPost subject:        Posted: Wed Oct 31, 2007 4:07 pm 
Ex OSBA Member
Ex OSBA Member
User avatar
Offline

Joined
Thu Aug 24, 2006 8:03 am

Posts
1120

Location
Germany
I forgot to close the <components> tag :oops:

now it seems to work.

_________________
"Theory is when you know something, but it doesn't work. Practice is when something works, but you don't know why. Programmers combine theory and practice: Nothing works and they don't know why."


Top  Profile
 PostPost subject:        Posted: Thu Jun 12, 2008 6:03 pm 
Guru Beta Collector
Guru Beta Collector
User avatar
Offline

Joined
Wed Jun 11, 2008 3:45 am

Posts
636

Location
UK
Cheers for this. Having to snapshot/restore was getting rather annoying.


Top  Profile
 PostPost subject: Re: [TUT] Changing the BIOS date in Virtual PC and VMWare        Posted: Wed Apr 06, 2011 3:13 pm 
Pro Beta Collector
Pro Beta Collector
User avatar
Offline

Joined
Wed Apr 06, 2011 3:10 pm

Posts
338

Favourite OS
Neptune 5111, Whistler 2430
Hi,

Just joined here. I have Virtual PC 2007 and did what you said to change the BIOS date on it, so I tried it but for some reason cannot change the day number, I can change the month and year but not the day, anyone know why?


Top  Profile
 PostPost subject: Re: [TUT] Changing the BIOS date in Virtual PC and VMWare        Posted: Sat May 14, 2011 12:59 am 
Amateur Beta Collector
Amateur Beta Collector
User avatar
Offline

Joined
Sat May 23, 2009 8:39 pm

Posts
172

Location
Aperture Science Enrichment Centre

Favourite OS
GLaDOS 1.07
Anyone have a utility to do this automatically in VMWare?

_________________
Image


Top  Profile
 PostPost subject: Re: [TUT] Changing the BIOS date in Virtual PC and VMWare        Posted: Mon May 16, 2011 8:28 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Wed Feb 23, 2011 12:11 am

Posts
2850

Location
Italy

Favourite OS
NT Oct91, Dec91, XP 2509
on VMware it is very easy as doing Virtual PC's

_________________
Tutorials, Video Games, Windows, basically geeky stuff!


Top  Profile  WWW
 PostPost subject: Re: [TUT] Changing the BIOS date in Virtual PC and VMWare        Posted: Tue May 17, 2011 10:41 pm 
Newbie Beta Collector
Newbie Beta Collector
Offline

Joined
Tue May 17, 2011 10:37 pm

Posts
1

Favourite OS
Windows XP
Hi,
in what section should I add this entry in Virtual PC 2007?
Here is the Options.xml file:
Code:
<?xml version="1.0" encoding="UTF-16"?>
<!-- Microsoft Virtual Machine Options and Settings -->
<preferences>
   <version type="string">2.0</version>
   <properties>
      <modifier>
         <build type="string">6.0.156.0</build>
         <name type="string">Microsoft Virtual PC 2007</name>
      </modifier>
   </properties>
   <virtual_gateway id="0">
      <id type="integer">0</id>
      <type type="integer">0</type>
   </virtual_gateway>
   <virtual_gateway id="1">
      <adapter type="string">\DosDevices\VPCNetS2_{A502A14D-B76A-4609-BA1D-AC5ECC58D064}</adapter>
      <id type="integer">16</id>
      <name type="string">Bluetooth Personal Area Network</name>
      <type type="integer">2</type>
   </virtual_gateway>
   <virtual_gateway>
      <next>
         <virtual_gateway_id type="integer">21</virtual_gateway_id>
      </next>
   </virtual_gateway>
   <virtual_gateway id="2">
      <adapter type="string">\DosDevices\VPCNetS2_{665DDBA1-5914-4BE5-B39A-507F3663F07C}</adapter>
      <id type="integer">17</id>
      <name type="string">Intel(R) PRO/Wireless 2200BG Network Connection - Intel Wireless Connection Agent Miniport</name>
      <type type="integer">2</type>
   </virtual_gateway>
   <virtual_network id="0">
      <gateway type="integer">0</gateway>
      <id type="bytes">FBB37009BDCF11DF813CE81224EF90E4</id>
      <name type="string">Local only</name>
      <notes type="string">This is the local only virtual network. Virtual machines connected to this virtual network can only communicate with other virtual machines on this network.</notes>
   </virtual_network>
   <virtual_network id="1">
      <gateway type="integer">20</gateway>
      <id type="bytes">FBB3700ABDCF11DF813CE81224EF90E4</id>
      <name type="string">Bluetooth Personal Area Network</name>
      <notes type="string">This is an external virtual network. Virtual NICs attached to this virtual network can access external networks through the "Bluetooth Personal Area Network" host network adapter.</notes>
   </virtual_network>
   <virtual_network id="2">
      <gateway type="integer">17</gateway>
      <id type="bytes">FBB3700BBDCF11DF813CE81224EF90E4</id>
      <name type="string">Intel(R) PRO/Wireless 2200BG Network Connection - Intel Wireless Connection Agent Miniport</name>
      <notes type="string">This is an external virtual network. Virtual NICs attached to this virtual network can access external networks through the "Intel(R) PRO/Wireless 2200BG Network Connection - Intel Wireless Connection Agent Miniport" host network adapter.</notes>
   </virtual_network>
   <window>
      <new_pc>
         <left_position type="integer">366</left_position>
         <top_position type="integer">290</top_position>
      </new_pc>
      <console>
         <height type="integer">254</height>
         <left_position type="integer">984</left_position>
         <top_position type="integer">139</top_position>
         <visible type="boolean">true</visible>
         <width type="integer">364</width>
      </console>
      <virtual_disk_wizard>
         <left_position type="integer">366</left_position>
         <top_position type="integer">290</top_position>
      </virtual_disk_wizard>
   </window>
   <settings>
      <virtual_pc>
         <enable_hw_assist type="boolean">true</enable_hw_assist>
      </virtual_pc>
   </settings>
   <virtual_gateway id="3">
      <adapter type="string">\DosDevices\VPCNetS2_{E7138AF3-D317-4428-9AD8-F6635CD5F34D}</adapter>
      <id type="integer">18</id>
      <name type="string">Marvell Yukon 88E8053 PCI-E Gigabit Ethernet Controller</name>
      <type type="integer">2</type>
   </virtual_gateway>
   <virtual_network id="3">
      <gateway type="integer">18</gateway>
      <id type="bytes">803C72D1122511E08216AFB37C7236B9</id>
      <name type="string">Marvell Yukon 88E8053 PCI-E Gigabit Ethernet Controller</name>
      <notes type="string">This is an external virtual network. Virtual NICs attached to this virtual network can access external networks through the "Marvell Yukon 88E8053 PCI-E Gigabit Ethernet Controller" host network adapter.</notes>
   </virtual_network>
   <alerts>
      <communications>
         <AETEMCAS type="boolean">true</AETEMCAS>
         <NTFYDIIE type="boolean">true</NTFYDIIE>
         <AETEMVCL type="boolean">true</AETEMVCL>
         <NTFYANID type="boolean">true</NTFYANID>
      </communications>
   </alerts>
   <virtual_gateway id="4">
      <adapter type="string">\DosDevices\VPCNetS2_{7D37B3E2-3A64-4D4E-87E2-4CFCAA3E56CE}</adapter>
      <id type="integer">19</id>
      <name type="string">Intel(R) PRO/Wireless 2915ABG Network Connection - Intel Wireless Connection Agent Miniport</name>
      <type type="integer">2</type>
   </virtual_gateway>
   <virtual_gateway id="5">
      <adapter type="string">\DosDevices\VPCNetS2_{13D92EEE-D51B-4144-9025-7AABCC4470D0}</adapter>
      <id type="integer">20</id>
      <name type="string">Bluetooth Personal Area Network</name>
      <type type="integer">2</type>
   </virtual_gateway>
   <virtual_network id="4">
      <gateway type="integer">19</gateway>
      <id type="bytes">D6E6BF0D65C011E08166C92F1C797757</id>
      <name type="string">Intel(R) PRO/Wireless 2915ABG Network Connection - Intel Wireless Connection Agent Miniport</name>
      <notes type="string">This is an external virtual network. Virtual NICs attached to this virtual network can access external networks through the "Intel(R) PRO/Wireless 2915ABG Network Connection - Intel Wireless Connection Agent Miniport" host network adapter.</notes>
   </virtual_network>
   <virtual_machines>
      <enable_idle_thread type="boolean">true</enable_idle_thread>
   </virtual_machines>
</preferences>


Top  Profile
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 16 posts ] 




Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  

All views expressed in these forums are those of the author and do not necessarily represent the views of the BetaArchive site owner.

Powered by phpBB® Forum Software © phpBB Group

Copyright © 2006-2013

 

Sitemap | XML | RSS