<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-CHT"><title type="html">ASP.NET Chinese Blogs</title><subtitle type="html" /><id>http://weblogs.asp.net/aspnet-cn-blogs/atom.aspx</id><link rel="alternate" type="text/html" href="http://weblogs.asp.net/aspnet-cn-blogs/default.aspx" /><link rel="self" type="application/atom+xml" href="http://weblogs.asp.net/aspnet-cn-blogs/atom.aspx" /><generator uri="http://communityserver.org" version="3.0.20510.895">Community Server</generator><updated>2011-10-28T22:11:00Z</updated><entry><title>Microsoft Server Products in Virtualized Environment</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/colt/~3/u4YtnLQNbkg/microsoft-server-products-in-virtualized-environment.aspx" /><id>http://feedproxy.google.com/~r/colt/~3/u4YtnLQNbkg/microsoft-server-products-in-virtualized-environment.aspx</id><published>2012-02-09T08:45:00Z</published><updated>2012-02-09T08:45:00Z</updated><content type="html">When designing solutions to different customers, a common question that I had heard is whether software X supported in virtualized environment? What about server product Y and Z supported as well? Below is a quick and good reference to answer this question Read More......(&lt;a href="http://feedproxy.google.com/~r/colt/~3/u4YtnLQNbkg/microsoft-server-products-in-virtualized-environment.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8290597" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author><category term="IT Pro" scheme="http://weblogs.asp.net/aspnet-cn-blogs/archive/tags/IT+Pro/default.aspx" /></entry><entry><title>Lync 2010 Mobile Clients</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/colt/~3/fhBvhcwmrXc/lync-2010-mobile-clients.aspx" /><id>http://feedproxy.google.com/~r/colt/~3/fhBvhcwmrXc/lync-2010-mobile-clients.aspx</id><published>2011-12-17T07:11:00Z</published><updated>2011-12-17T07:11:00Z</updated><content type="html">I used both Microsoft OCS 2007 and Lync 2010 at work and at Microsoft network. It&amp;#39;s good to see that the official Lync 2010 clients for Windows phone is released: http://blogs.msdn.com/b/nandal/archive/2011/12/13/lync-2010-client-for-windows-phone Read More......(&lt;a href="http://feedproxy.google.com/~r/colt/~3/fhBvhcwmrXc/lync-2010-mobile-clients.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8135292" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author><category term="Personal" scheme="http://weblogs.asp.net/aspnet-cn-blogs/archive/tags/Personal/default.aspx" /></entry><entry><title>EMA算法的C#实现</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/shanyou/archive/2011/12/15/2289501.html" /><id>http://www.cnblogs.com/shanyou/archive/2011/12/15/2289501.html</id><published>2011-12-15T14:27:00Z</published><updated>2011-12-15T14:27:00Z</updated><content type="html">EMA表示的是指数平滑移动平均，其函数的定义为Y=EMA(X,N) 则Y=[2*X+(N-1)*Y&amp;#39;]/(N+1), 其中Y&amp;#39;表示上一周期Y值。 求X的N日指数平滑移动平均，它真正的公式表达是：当日指数平均值=平滑系数*（当日指数值-昨日指数平均值）+昨日指数平均值；平滑系数=2/（周期单位+1） EMA引用函数在计算机上使用递归算法很容易实现，但不容易理解。以下，列举分析说明EMA函数。 X是变量，每天的X值都不同，从远到近地标记，它们分别记为X1，X2，X3，&amp;hellip;.，Xn 当N=1，则EMA(X，1)=［2*X1+(1-1)*Y&amp;rsquo;］/(1+1)=X1 当N=2，则EMA(X，2)=［2*X2+(2-1)*Y&amp;rsquo;］/(2+1)=(2/3)*X2+(1/3)X1 当N=3，则EMA(X，3)=［2*X3+(3-1)*Y&amp;rsquo;］/(3+1)=［2*X3+2*((2/3)*X2+(1/3)*X1)］/4=(1/2)*X3+(1/3)*X2+(1/6)*X1 当N=4，则EMA(X，4)=［2*X4+(4-1)*Y&amp;rsquo;］/(4...(&lt;a href="http://www.cnblogs.com/shanyou/archive/2011/12/15/2289501.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8127005" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>Windows Phone 7 WebBrowser 中文乱码问题</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/shanyou/archive/2011/12/11/2284208.html" /><id>http://www.cnblogs.com/shanyou/archive/2011/12/11/2284208.html</id><published>2011-12-11T13:33:00Z</published><updated>2011-12-11T13:33:00Z</updated><content type="html">通过WebBrowser直接请求网页,是正常显示的,只是通过获取到字符串,再通过NavigateToString()就会显示乱码. 中文转换成 Unicode编码就可以了，不过性能不是很好： &amp;#160;&amp;#160;&amp;#160; public static string Unicode2HTML(string HTML) &amp;#160;&amp;#160;&amp;#160; { &amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; StringBuilder str = new StringBuilder(); &amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; char c; &amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; for (int i = 0; i &amp;lt; HTML.Length; i++) &amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;...(&lt;a href="http://www.cnblogs.com/shanyou/archive/2011/12/11/2284208.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8109918" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>Windows Phone 7 实战第二天 二维码QRcode</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/shanyou/archive/2011/12/07/2280027.html" /><id>http://www.cnblogs.com/shanyou/archive/2011/12/07/2280027.html</id><published>2011-12-07T15:11:00Z</published><updated>2011-12-07T15:11:00Z</updated><content type="html">越来越多的收据具备自动对焦的拍摄功能，这也意味着这些手机可以具备条码扫描功能，手机具备条码扫描功能，可以优化购物流程，快速存储电子名片（二维码）等。 QR 码是二维条码的一种，QR 来自英文 “Quick Response” 的缩写，即快速反应的意思，源自发明者希望 QR 码可让其内容快速被解码。QR码比普通条码可储存更多资料，亦无需像普通条码般在扫描时需直线对准扫描器。 QR 码呈正方形，只有黑白两色。在4个角落的其中3个，印有较小，像“回”字的的正方图案。这 3 个是帮助解码软件定位的图案，使用者不需要对准，无论以任何角度扫描，资料仍可正确被读取。 更详细介绍 。 QRCode在生活中有着多方面的应用，例如火车票上有QRCode可以用来保存信息，现在很多手机软件都提供扫描QRCode下载，而一号店网上商店在上海地铁那里开设有“墙贴超市”，路人只要用手机扫描某商品的QRCode即可下单购买等等。 这次我们要做的应用就是二维码的生成，读取器。需要一个Windows Phone 7上的类库来支持。在网上搜寻可用的条形码识别库。 这个是效果最好的了，项目在 http://code.google...(&lt;a href="http://www.cnblogs.com/shanyou/archive/2011/12/07/2280027.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8097926" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>Windows Phone 7实战 第一天 设计启动页面和应用程序图标</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/shanyou/archive/2011/12/04/2276074.html" /><id>http://www.cnblogs.com/shanyou/archive/2011/12/04/2276074.html</id><published>2011-12-04T13:33:00Z</published><updated>2011-12-04T13:33:00Z</updated><content type="html">每一个 Windows Phone 7 应用程序在启动时多少会花上一些时间，在这个等待的时刻经常都会摆放一些启动画面 (Splash screen) 先来充充场面，以免加载时间过长而导致使用者不耐烦，而在这个启动屏幕里是一个很好的宣传页面，可以把产品的广告，作者介绍在这里显示、品牌信息都显示在这个页面里，当然时间不能太长、也不能太短，否则若这个启动屏幕跑得太快，那就没有出现的必要性了，有时后这种必要的“慢”也是一种艺术。 首先我们建立一个默认的Silverlight For windows&amp;#160; Phone的项目 &amp;#160; 我们就是要制作一个二维码生成器应用程序啦，选用芒果应用程序 Windows Phone OS 7.1。 然后新增一个页面&amp;#160; Windows Phone Portrait Page 页面，并取名为 SplashScreen.xaml， 方法是右击工程，选择Add→New Item→Windows Phone Portait Page，把页面里面的所有界面元素删除，添加一个Image控件到SplashScreen.xaml页面。 由于 Windows...(&lt;a href="http://www.cnblogs.com/shanyou/archive/2011/12/04/2276074.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8090446" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>使用 NuGet 管理项目库</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/shanyou/archive/2011/12/03/2274560.html" /><id>http://www.cnblogs.com/shanyou/archive/2011/12/03/2274560.html</id><published>2011-12-03T03:49:00Z</published><updated>2011-12-03T03:49:00Z</updated><content type="html">共享和重用代码是一个很大的挑战。 不相信？ 请随便走进一间中型或大型工作室，问问他们有多少日志记录库。 访问多家公司后，您将发现他们拥有比例非常高的内部日志记录库，而这些库中有一些非常不错，例如，Log4Net、NLog 和 Error Logging Modules and Handlers（即 ELMAH）。 当一位开发人员开始新项目时，他将面对一张空白的画布。 他如何去发现这些有用的库？ 如何将库集成到当前项目中并管理库的依赖项和更新呢？ ELMAH 就是一个非常有用的库，是由开发人员自己编写的。 ELMAH 能够在出现异常时记录 Web 应用程序中所有未经处理的异常以及所有请求信息，例如，标头、服务器变量等。 假设您刚刚听说 ELMAH 并希望在下一个项目中使用它。 您可能会采取下列步骤： 查找 ELMAH。 由于它名称独特，Bing 搜索的第一条搜索结果将是 ELMAH Google 代码页。 下载正确的 zip 包。 该站点的下载页面有多个 zip 包。 您必须思考并选取正确的一个。 有时，您并不能一眼就看出正确的是哪个。 “取消阻止”程序包。 从 Web 下载程序包后，您需要右键单击该文件...(&lt;a href="http://www.cnblogs.com/shanyou/archive/2011/12/03/2274560.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8087043" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>VS 2010 SP1的一个功能(添加可部署依赖项)</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/shanyou/archive/2011/11/24/2262358.html" /><id>http://www.cnblogs.com/shanyou/archive/2011/11/24/2262358.html</id><published>2011-11-24T14:24:00Z</published><updated>2011-11-24T14:24:00Z</updated><content type="html">使用“添加可部署的依赖项”对话框，您可以将程序集（DLL 文件）添加到网站项目或 Web 应用程序项目。 在部署网站或应用程序时，将文件包含在部署项目中。 如果项目所依赖的应用程序或技术尚未安装在将承载 Web 项目的服务器上，这是非常有用的。 例如，您可以使用此功能将 ASP.NET MVC 3 Web 应用程序部署到没有安装 ASP.NET MVC 3 的服务器。 我们来看下 NopCommerce 项目中如何使用的这一功能，NopCommerce 最新版本是2.30，基于ASP.NET MVC 3.0构建的电子商务B2C程序。 需要在你的项目中使用这一功能，只需要在项目上点击右键，然后选择 Add Deployable Assemblies。 在 Web 应用程序项目中，所选组件的程序集将从_bin_deployableassemblies 文件夹中复制到bin。&amp;#160; 代替之前我们在项目中设定的copy local .如此一来，即使在自定义生成过程中从 bin 中删除了文件，在发布项目时仍会正确地从 _bin_deployableassemblies 文件夹重新复制依赖项...(&lt;a href="http://www.cnblogs.com/shanyou/archive/2011/11/24/2262358.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8072696" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>Smart TV应用开发：占领下一个客户端？</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xlzhu/archive/2011/11/22/2258248.html" /><id>http://www.cnblogs.com/xlzhu/archive/2011/11/22/2258248.html</id><published>2011-11-21T19:08:00Z</published><updated>2011-11-21T19:08:00Z</updated><content type="html">手机、平板、TV大融合中的创业机遇暨Smart TV沙龙(深圳站)活动结束了，我也作为嘉宾回答了问题，不过时间太短，有些观点还是需要详细记录一下： Smart TV的好处很容易发现： 产品外观时尚、技术高端（内置WIFI、支持3D、HDMI），代表着未来的潮流 适合在客厅、适合在大屏幕上的应用肯定会有市场，家庭生活应用（菜谱、买电影票、点外卖、叫快递、缴费、卡拉OK、流媒体）、家庭游戏、英文学习、文案图像展示（有3D哦亲）...... 如果你打算现在就开发应用去占领这个客户端的话，必须要考虑以下风险： 平台风险： Smart TV价格高高在上（两万余元），如果你开发游戏的话，你的用户数量无形之中就收到了限制 智能电视领域有国内的联盟（价格有优势，普及也许会更快），也有Apple TV、Google TV，Smart TV 能笑到最后吗？ 政策风险： 看看天朝三网融合以来几个利益集团打架的激烈程度就知道在这个客户端上做内容有多么难，你真的懂的...... 技术风险： Smart TV和bada开发什么关系？会不会以后合并为一个平台？ 如果应用依赖输入的话，现阶段SmartTV的输入较为不便...(&lt;a href="http://www.cnblogs.com/xlzhu/archive/2011/11/22/2258248.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8067656" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>大数据块(BLOBs)与流(Stream)操作性能规范</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think/archive/2011/11/17/BLOB_Stream.html" /><id>http://www.cnblogs.com/think/archive/2011/11/17/BLOB_Stream.html</id><published>2011-11-17T04:45:00Z</published><updated>2011-11-17T04:45:00Z</updated><content type="html">发现团队中有些兄弟对流的使用还不太熟悉，对SQL Server中大对象操作不太清楚，所以写这篇基础文章，以做规范 作者: Think 发表于 2011-11-17 12:45 原文链接 评论: 0 查看评论 发表评论 最新新闻： · 苹果指控亚马逊发布虚假平板电脑广告 (2011-11-18 21:14) · 消息称苹果曾开发AMD芯片版MacBook Air (2011-11-18 20:56) · 中兴希望提升利润率 目标是第三大电信设备商 (2011-11-18 20:54) · Adobe宣布战略转型 (2011-11-18 20:18) · 谷歌：安卓系统用户激活量已超过2亿 (2011-11-18 20:15) 网站导航： 博客园首页 我的园子 新闻 闪存 博问 知识库 Read More......(&lt;a href="http://www.cnblogs.com/think/archive/2011/11/17/BLOB_Stream.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8063416" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>My 10th Consecutive Microsoft MVP Award</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/colt/~3/wcyb_bTYBNM/my-10th-consecutive-microsoft-mvp-award.aspx" /><id>http://feedproxy.google.com/~r/colt/~3/wcyb_bTYBNM/my-10th-consecutive-microsoft-mvp-award.aspx</id><published>2011-11-11T14:44:00Z</published><updated>2011-11-11T14:44:00Z</updated><content type="html">I&amp;#39;m delighted and proud to receive a parcel recently because I got my 10th MVP award token last week! It&amp;#39;s my 10th MVP award and I saw different kinds of trophies and souvenirs over the past 10 years, but the concept of &amp;quot;token&amp;quot; is really Read More......(&lt;a href="http://feedproxy.google.com/~r/colt/~3/wcyb_bTYBNM/my-10th-consecutive-microsoft-mvp-award.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8056184" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author><category term="Personal" scheme="http://weblogs.asp.net/aspnet-cn-blogs/archive/tags/Personal/default.aspx" /></entry><entry><title>ServiceStack.Redis 使用教程</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/shanyou/archive/2011/11/10/2245082.html" /><id>http://www.cnblogs.com/shanyou/archive/2011/11/10/2245082.html</id><published>2011-11-10T15:16:00Z</published><updated>2011-11-10T15:16:00Z</updated><content type="html">环境准备 Redis (使用Windows版本做测试，运营环境建议使用Linux版本) ServiceStack.Redis-v3.00 在Windows上运行Redis服务器作开发和测试是很好的，但是在运营环境还是Linux版本靠谱，下面我们就先解压Redis到一个目录下： 运行 redis-server.exe 看到如下Windows控制台： 上面我们可以看到Redis运行的端口是6372 我们先玩一下Redis的客户端控制台，在相同目录下运行 redis-cli.exe 会弹出另一个控制台程序，可以参考 Try Redis tutorial 开始你的交互之旅。 输入命令 set car.make &amp;ldquo;Ford&amp;rdquo; 添加了一个car.make为Key，Value是Ford的数据进入Redis，输入命令get car.make就可以取回Ford 下面我们进入正题，讲主角ServiceStack.Redis ： 首先创建一个控制台程序，然后解压缩 ServiceStack.Redis-v3.00.zip ，然后添加下面的四个引用 ServiceStack.Common...(&lt;a href="http://www.cnblogs.com/shanyou/archive/2011/11/10/2245082.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8044338" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>手机、平板、TV大融合中的创业机遇暨Smart TV技术沙龙公告</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xlzhu/archive/2011/11/07/2239252.html" /><id>http://www.cnblogs.com/xlzhu/archive/2011/11/07/2239252.html</id><published>2011-11-07T06:50:00Z</published><updated>2011-11-07T06:50:00Z</updated><content type="html">活动介绍：手机、平板、TV大融合中的创业机遇暨Smart TV沙龙是针对移动开发者、跨平台开发团队及企业IT决策者的一个包含技术普及、产品展示和行业交流的系列线下沙龙活动，活动除了为广大参会来宾设置了丰富多彩的互动课程外还有多台Smart TV在现场供开发者试用。不论您身为一名移动开发者、还是身为跨平台应用的开发人员，我们都欢迎您参加Smart TV沙龙，您将会发现与Smart TV相关的产品、开发工具、更新的资讯、更有用的资源，能有效率地来开发基于Smart TV平台的应用和服务。Smart TV沙龙巡展将在11月19日在深圳开展巡展的第二站活动。欢迎感兴趣的开发者、创业公司、跨平台开发团队以及媒体圈的朋友参加。活动免费，更有惊喜大奖抽送！ 活动时间：2011年11月19日(星期六) 活动地点：深圳市 罗湖区深南东路5002号 地王大厦信兴广场1楼111-112号 星期五餐厅 场地电话：0755-82460757 乘车路线：公共汽车深南路西向书城站；地铁1号线2号线大剧院站D出口 地图： 活动日程： 13:00-13:55 来宾签到入场 13:55-14:00 活动开场 主持人开场介绍活动及来宾...(&lt;a href="http://www.cnblogs.com/xlzhu/archive/2011/11/07/2239252.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8036827" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry><entry><title>The First SharePoint Conference in Hong Kong</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/colt/~3/McMXLQ3CNs0/the-first-sharepoint-conference-in-hong-kong.aspx" /><id>http://feedproxy.google.com/~r/colt/~3/McMXLQ3CNs0/the-first-sharepoint-conference-in-hong-kong.aspx</id><published>2011-11-07T03:00:00Z</published><updated>2011-11-07T03:00:00Z</updated><content type="html">The first time ever SharePoint conference is going to be happened this Friday (Hong Kong time). I just registered and the agenda looks great. There are couple of speakers fly in and deliver sessions ranging from Level 100 to Level 300. I joined the local Read More......(&lt;a href="http://feedproxy.google.com/~r/colt/~3/McMXLQ3CNs0/the-first-sharepoint-conference-in-hong-kong.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8036578" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author><category term="SharePoint" scheme="http://weblogs.asp.net/aspnet-cn-blogs/archive/tags/SharePoint/default.aspx" /></entry><entry><title>Windows Server 8 开发预览版</title><link rel="alternate" type="text/html" href="http://www.cnblogs.com/shanyou/archive/2011/10/29/2228387.html" /><id>http://www.cnblogs.com/shanyou/archive/2011/10/29/2228387.html</id><published>2011-10-29T02:11:00Z</published><updated>2011-10-29T02:11:00Z</updated><content type="html">与Windows 8 开发预览版同时上线的 Windows Server 8 开发预览版也出来了。有兴趣的朋友可以去MSDN下载(要求有msdn的账号)。 安装过程就不具体介绍了，主要变化的地方：windows server 2008/R2系统引导分区是100M，现在是350M了 安装了Windows Server 8之后，扑面而来的就是Metro UI与基于这款新UI的服务器管理界面，功能更加直观，便于管理服务器。 Windows Server 2008的服务器管理器工具与其前辈产品相比，在本地服务器管理、各角色配置及服务器本身功能方面提升明显。而Windows 8则让这一切更进一步，允许我们将其工具同时使用在多套系统中。举例来说，大家可以创建服务器组，进而对多套系统加以变更。也就是说，我们现在可以将自己的多台IIS服务器或者是DHCP服务器视为一台单独的服务器，以群组的方式对其进行远程控制——这对于各套系统地位对等的服务器核心来说无疑是一大福音。如今，大家能够轻松地处理大量管理工作，包括安装更新、重新启动、实施调整等等。 为了减少很多企业系统管理员在管理补丁和更新时的焦虑，微软正在研发集群技术...(&lt;a href="http://www.cnblogs.com/shanyou/archive/2011/10/29/2228387.html"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8019655" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://weblogs.asp.net/members/Anonymous.aspx</uri></author></entry></feed>
