使虚拟机(Virtual PC)与宿主机时间不同步。使用微软官方的VHD有个时间license。时间为半年,这样过了半年就得换新的了。所以我们把虚拟机的时间调一下。咱们就可以用很长时间了。
方法是官网提供的。
1.Stop the virtual machine in question. (关闭正在运行的虚拟机)
2.Locate the .VMC file for the virtual machine.(找到虚拟机的VMC格式的配置文件)
3.Open the .VMC file in notepad. (用记事本打开VPC文件)
4.Find the section of the .VMC file that looks like this:(找到VMC文件中如下几行)
代码:
<integration>
<microsoft>
<mouse>
<allow type="boolean">true</allow>
</mouse>
Bunch of other stuff that I am skipping over to save space...
</microsoft>
</integration>
5.Change it to look like this:(改成这样)
代码:
<integration>
<microsoft>
<mouse>
<allow type="boolean">true</allow>
</mouse>
<components>
<host_time_sync>
<enabled type="boolean">false</enabled>
</host_time_sync>
</components>
Bunch of other stuff that I am skipping over to save space...
</microsoft>
</integration>
6.Close notepad and save the .VMC file. (保存VMC文件后关闭记事本)
7.Start the virtual machine under Virtual PC. (在VPC里启动虚拟机)
本文介绍了如何使虚拟机(Virtual PC)与宿主机时间不同步,以延长微软官方VHD的使用时间。通过修改虚拟机的VMC配置文件,禁用时间同步功能,可以避免半年后更换新的license。
773

被折叠的 条评论
为什么被折叠?



