Visual Studio 2010和.NET Framework 4.0被称为是下一代的面向Vista(Windows 7),Office System和WEB开发的强有力的工具。现在你可以访问http://www.microsoft.com/downloads/details.aspx?familyid=922b4655-93d0-4476-bda4-94cf5f8d4814&displaylang=en来下载Team System 2010 CTP版本的VPC了,但是这个VPC可能很快就会过期。今天无意间发现了一位微软员工的博客上讲了怎么去更改设置让VPC可以延长过期。顺便就转载了,挺有用的,大家可以参考参考。文字很通俗易懂,就不翻译了:)

If you’ve been using the Team System 2010 CTP VPC, you’ve probably noticed that the instance of Visual Studio within the VPC is getting close to expiring.  We expect that it will cease functioning around the end of the year and instead return the message “The evaluation period for Visual Studio Trial Edition has ended”:

image

Unfortunately, it’ll be a while before we release our next update to Team System 2010 so you’ll need to take action to keep this version working for a while.  Fortunately, there is a relatively easy resolution to this problem.  It involves turning off the synchronization between the host OS and the VPC.  This enables you to set the time in the VPC to a 2008 date while you live in 2009.  As you might imagine, Team Foundation Server doesn’t like it much when time goes backwards so you’ll want to make sure that you don’t use the VPC and then set the clock backwards after that point.  Ideally, you can use a fresh VPC and disable your clock prior to launching it for the first time. 

Disabling the host OS synchronization of the VPC.  This is a change to the .VMC file (see below) that basically disables the clock synchronization between the VPC and the host OS.  This means that time in the VPC moves forward only when the VPC is being used. As a result, we have essentially 2 months of runtime (not wall time) for the VPC which is way more time than people should need to run the CTP, even if they’re demoing it regularly to others.

Here are the changes necessary for the .VMC file (specific to a particular VPC and not a system-wide setting):

<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>

Hopefully this will allow you to have plenty of time to evaluate the CTP and send us feedback on what you like and don’t like about what we put together in this release.  As you might imagine, we’re hard at work putting together the next release and your feedback over the next period of time will really help us make sure that the next release is even better than the current CTP.  And, yes, we will release both a VPC and native install version of the CTP so that folks will have flexibility in how they deploy and evaluate the next release. 

One important note:  don’t attempt to join the VPC to a domain since the domain will set the time within the VPC and thus cause Visual Studio to expire.

posted on 2008-12-09 22:50  Allan.  阅读(2265)  评论(5编辑  收藏  举报