您的最佳的信息源和新闻 BIOS, 窗口远景 并且 BIOS 在互联网

景色文章 名列前茅50 景色录影 景色软 景色帮助

一奇怪的KB我会说- 240天窗口服务器2008年为没什么?


有时您来在牌子您想知道的一篇奇怪的KB文章-为什么那信息是公开的或什么是文章的一般用途是… 我今天发现了这一个:

如何延长窗口服务器2008年评估期间
http://support.microsoft.com/kb/948472

 

这从文章被引述:

总结

这篇文章描述如何延伸或者重整军备,窗口服务器2008年评估期间。 评估期间是亦称“活化作用雍容”期间。 这些指示适用于窗口服务器的所有编辑2008年。 这包括评估复制。

介绍

评估的窗口服务器2008年软件不要求产品活化作用。 窗口服务器2008的任何编辑也许安装,不用活化作用,并且它也许被评估60天。 另外,也许重新设置60天评估期间(重整军备)三次。 这次行动延长原始的60天评估期间到180天240天的总可能的评估时间。
笔记 虽然您能重新设置60天评估期间,您不可能延伸它以远60天任何时候。 当您重新设置当前60天评估期间时,您丢失任何时间在早先60天评估期间留给。 所以,在您之前最大化总评估时间,等待直到紧挨当前60天评估期间的结尾重新设置评估期间。

更多信息

如何安装窗口服务器2008年,不用激活它

1. 运行窗口服务器2008设定程序。
2. 当您被提示输入一把产品钥匙为活化作用时,不要进入钥匙。 点击 当设定要求您证实您的选择。
3. 您可以被提示选择您想要评估窗口服务器的编辑2008年。 选择您想要设施的编辑。
笔记 在2008年安装之后窗口服务器,编辑不可能被改变不再安装它。

4. 当您被提示时,读评估期限用微软软件执照期限,然后接受条件。
5. 当完成时窗口服务器2008设定程序,您的初期60天评估期间开始。 要检查在您的当前评估期间留给的时间,跑在System32文件夹的Slmgr.vbs剧本。 使用 - dli 交换跑这个剧本。 slmgr.vbs - dli 命令显示在当前60天评估期间被留下几天的数量。

如何手工延长评估期间

When the initial 60-day evaluation period nears its end, you can run the Slmgr.vbs script to reset the evaluation period. To do this, follow these steps:

1. Click Start, and then click Command Prompt.
2. Type slmgr.vbs -dli, and then press ENTER to check the current status of your evaluation period.
3. To reset the evaluation period, type slmgr.vbs –rearm, and then press ENTER.
4. Restart the computer.

This resets the evaluation period to 60 days.

How to automate the extension of the evaluation period

You may want to set up a process that automatically resets the evaluation period every 60 days. One way to automate this process is by using the Task Scheduler. You can configure the Task Scheduler to run the Slmgr.vbs script and to restart the server at a particular time. To do this, follow these steps:

1. Click Start, point to Administrative Tools, and then click Task Scheduler.
2. Copy the following sample task to the server, and then save it as an .xml file. For example, you can save the file as Extend.xml.

<?xml version="1.0" encoding="UTF-16"?><Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">  <RegistrationInfo>    <Date>2007-09-17T14:26:04.433</Date>    <Author>Microsoft Corporation</Author>  </RegistrationInfo>  <Triggers>    <TimeTrigger id="18c4a453-d7aa-4647-916b-af0c3ea16a6b">      <Repetition>        <Interval>P59D</Interval>        <StopAtDurationEnd>false</StopAtDurationEnd>      </Repetition>      <StartBoundary>2007-10-05T02:23:24</StartBoundary>      <EndBoundary>2008-09-17T14:23:24.777</EndBoundary>      <Enabled>true</Enabled>    </TimeTrigger>  </Triggers>  <Principals>    <Principal id="Author">      <UserId>domainalias</UserId>      <LogonType>Password</LogonType>      <RunLevel>HighestAvailable</RunLevel>    </Principal>  </Principals>  <Settings>    <IdleSettings>      <Duration>PT10M</Duration>      <WaitTimeout>PT1H</WaitTimeout>      <StopOnIdleEnd>true</StopOnIdleEnd>      <RestartOnIdle>false</RestartOnIdle>    </IdleSettings>    <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>    <DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>    <StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>    <AllowHardTerminate>true</AllowHardTerminate>    <StartWhenAvailable>false</StartWhenAvailable>    <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>    <AllowStartOnDemand>true</AllowStartOnDemand>    <Enabled>true</Enabled>    <Hidden>false</Hidden>    <RunOnlyIfIdle>false</RunOnlyIfIdle>    <WakeToRun>true</WakeToRun>    <ExecutionTimeLimit>P3D</ExecutionTimeLimit>    <DeleteExpiredTaskAfter>PT0S</DeleteExpiredTaskAfter>    <Priority>7</Priority>    <RestartOnFailure>      <Interval>PT1M</Interval>      <Count>3</Count>    </RestartOnFailure>  </Settings>  <Actions Context="Author">    <Exec>      <Command>C:WindowsSystem32slmgr.vbs</Command>      <Arguments>-rearm</Arguments>    </Exec>    <Exec>      <Command>C:WindowsSystem32shutdown.exe</Command>      <Arguments>/r</Arguments>    </Exec>  </Actions></Task>

3. In the sample task, change the value of the following “UserID” tag to contain your domain and your alias:

<UserId>domain\alias</UserId>

4. In the Task Scheduler, click Import Task on the Action menu.

5. Click the sample task .xml file. For example, click Extend.xml.

6. Click Import.

7. Click the Triggers tab.

8. Click the One Time trigger, and then click Edit.

9. Change the start date of the task to a date just before the end of your current evaluation period.

10. Click OK, and then exit the Task Scheduler.

The Task Scheduler will now run the evaluation reset operation on the date that you specified.

 

-

Popularity: 5%


Written by Jakob H. Heidelberg. Read more great feeds at is source WEBSITE
no comments.
Read more articles on otherSoftware and knowledge base and kb and Activation and Windows Server 2008.

Related articles

No comments

There are still no comments on this article.

Leave your comment...

If you want to leave your comment on this article, simply fill out the next form:




You can use these XHTML tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong> .