Monday, September 6, 2010

How To Disable Time Synchronization in VMware virtual machine

We often install trial version of operating system as virtual machine in VMWare environment. This trial version will expire after 60, 90 or 120 days. To avoid this expiration, you can stop the time synchronization between vm and host machine.

How ?

Edit the virtual machine configuration (.vmx) file using text editor then modify this coinfiguration :

tools.syncTime = "0"
time.synchronize.continue = "0"
time.synchronize.restore = "0"
time.synchronize.resume.disk = "0"
time.synchronize.shrink = "0"
time.synchronize.tools.startup = "0"

(0=disable ; 1=enable)

Then restart your vm. Now your vm will maintain separate system date/time from host machine.

No comments:

Post a Comment