How to solve VS2010 CTP VPC expired problem?
如果您曾經下載過
你會發現在2009/01/01之後,當你啟動這個VPC,要執行VS2010時,就會出現過期的訊息。
這個問題要如何解決?
可以透過下列方式設定:
1. 停止VPC。
2. 重新解壓縮並且覆蓋原VPC檔案(注意,必須使用全新的檔案才行,否則VPC仍會偵測到時間過期)
3. 編輯VisualStudio2010CTP.vmc檔案。找到下列XML段落:
<integration>
<microsoft>
<mouse>
<allow type="boolean">true</allow>
</mouse>
.............
</microsoft>
</integration>
4. 新增紅色區段,這段是為了要讓VPC能不跟你電腦的時間同步:
<integration>
<microsoft>
<mouse>
<allow type="boolean">true</allow>
</mouse>
<components>
<host_time_sync>
<enabled type="boolean">false</enabled>
</host_time_sync>
</components>
..........
</microsoft>
</integration>
5. 儲存,重新開啟VPC,就可以繼續使用VPC。
參考網址:
如果您有微軟技術開發的問題,可以到MSDN Forum發問。
如果您有微軟IT管理的問題,可以到TechNet Forum發問喔。