<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>PSfD: Team Blog</title><link>http://blogs.msdn.com/psfd/default.aspx</link><description>If you have a problem, if no one else can help, and if you can find them, maybe you can hire the PSfD Team.</description><dc:language>en-GB</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>MSMQ with WCF </title><link>http://blogs.msdn.com/psfd/archive/2006/02/12/530575.aspx</link><pubDate>Sun, 12 Feb 2006 23:54:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:530575</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/530575.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=530575</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=530575</wfw:comment><description>&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Windows Communication Foundation (WCF), formally named Indigo, is part of the WinFX and is designed for inter-process communication and building connected systems.&amp;nbsp; For a basic grounding in this technology check this article on MSDN:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Learn The ABCs Of Programming Windows Communication Foundation&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;A href="http://msdn.microsoft.com/msdnmag/issues/06/02/WindowsCommunicationFoundation/default.aspx"&gt;http://msdn.microsoft.com/msdnmag/issues/06/02/WindowsCommunicationFoundation/default.aspx&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;This article got me interested enough to use it in some code. &amp;nbsp;One of the first things you find is that it’s really easy to move your data over different transports using the predefined bindings in WCF. &amp;nbsp;These include: HTTP, TCP, Named Pipes and MSMQ.&amp;nbsp; The first three work fine but MSMQ takes a bit more work if you are running it in workgroup mode (rather than part of an active directory) as you typically do when testing on a local machine.&amp;nbsp; Without modifying the configuration you will likely get the following exception on the client when trying to call a method on the MSMQ transport:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;System.ServiceModel.Channels.MsmqException&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;There was an error sending to the queue: Unknown error -1072824273 (0xc00e002f)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;The default configuration will try to authenticate you against the active directory and sign the message using a certificate stored in the active directory, neither of which is in place. &amp;nbsp;To get this working with the January CTP release of WinFX, do the following:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;For the ServiceHost:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Using a binding configuration element, set the security mode to none, for example:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;bindings&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;netMsmqBinding&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;binding name="netMsmqConfig"&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;security mode="None" /&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/binding&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/netMsmqBinding&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/bindings&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;For the client:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Modify the msmqTransportSecurity element placed in the config file, generated by creating a proxy with svcutil.exe, from the defaults generated as follows:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;msmqTransportSecurity msmqAuthenticationMode="None"&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; msmqEncryptionAlgorithm="RC4Stream" msmqProtectionLevel="None"&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; msmqSecureHashAlgorithm="SHA1" /&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/msmqTransport&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;This has switched off transport and message security for the MSMQ transport. &amp;nbsp;For evaluating the technology this is ideal as it allows you to examine messages in the queue and get things working quickly. &amp;nbsp;For a real application you will need to consider your security requirements carefully and avoid using this configuration.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;--Chris&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=530575" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/PSfD/default.aspx">PSfD</category><category domain="http://blogs.msdn.com/psfd/archive/tags/Chris+Marchal/default.aspx">Chris Marchal</category></item><item><title>Windows Workflow Foundation</title><link>http://blogs.msdn.com/psfd/archive/2005/09/16/468849.aspx</link><pubDate>Fri, 16 Sep 2005 18:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:468849</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/468849.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=468849</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=468849</wfw:comment><description>&lt;P&gt;&lt;SPAN class=156284214-16092005&gt;&lt;FONT face=Arial size=2&gt;&lt;FONT color=#0000ff&gt;&lt;FONT color=#000000&gt;This article describes how you can get a great design time experience from your custom Windows Workflow Foundation activities. For more details&lt;/FONT&gt; &lt;A href="http://www.morganskinner.com/Articles/ActivityValidation"&gt;click here&lt;/A&gt;.&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#000000&gt;For details about the Windows Workflow Foundation go to &lt;/FONT&gt;&lt;A title=http://www.windowsworkflow.net/ href="http://www.windowsworkflow.net/"&gt;&lt;FONT color=#0000ff&gt;&lt;FONT color=#000000&gt;http&lt;/FONT&gt;://www.windowsworkflow.net&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#0000ff&gt; .&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=156284214-16092005&gt;&lt;FONT face=Arial color=#000000 size=2&gt;--Morgan&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=468849" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/PSfD/default.aspx">PSfD</category><category domain="http://blogs.msdn.com/psfd/archive/tags/Morgan+Skinner/default.aspx">Morgan Skinner</category></item><item><title>Unhandled Exception in .Net 2.0</title><link>http://blogs.msdn.com/psfd/archive/2005/08/17/452702.aspx</link><pubDate>Wed, 17 Aug 2005 19:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:452702</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/452702.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=452702</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=452702</wfw:comment><description>&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Having just found out the hard way; the way the Framework deals with unhandled exceptions has changed.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;In v1 the framework will eat any unhandled exceptions that you throw.&lt;BR&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;If you created a thread which threw an uncaught exception you may never know about it as the framework would eat it for you.&lt;BR&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;This has all changed in v2 and if you throw an exception out of your ThreadStart function, &lt;B&gt;&lt;SPAN style="FONT-WEIGHT: bold"&gt;you process is going to get killed&lt;/SPAN&gt;&lt;/B&gt;.&lt;BR&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Not just the thread, the whole process.&lt;BR&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;This makes finding unhandled exception nice and obvious, but isn’t going to go down well if you have an existing app that is leaking exceptions.&lt;BR&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;So before you install v2 of the framework on you production servers (you will have tested it first, right?) you might want to review your code to ensure that you catch (and log) any exceptions.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Needless to say John Robbins was on top of this months before me, so you can read all about it at:&lt;BR&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;A title=http://msdn.microsoft.com/msdnmag/issues/05/07/Bugslayer/default.aspx href="http://msdn.microsoft.com/msdnmag/issues/05/07/Bugslayer/default.aspx"&gt;http://msdn.microsoft.com/msdnmag/issues/05/07/Bugslayer/default.aspx&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;-- Neil&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=452702" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/PSfD/default.aspx">PSfD</category><category domain="http://blogs.msdn.com/psfd/archive/tags/Neil+Kidd/default.aspx">Neil Kidd</category></item><item><title>IIS &amp; Authentication</title><link>http://blogs.msdn.com/psfd/archive/2005/08/01/446004.aspx</link><pubDate>Mon, 01 Aug 2005 17:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:446004</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/446004.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=446004</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=446004</wfw:comment><description>&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Just in case (like me) you didn’t know in IIS6, the default is for every request to the server to be authenticated – even if new requests are using the same session.&lt;BR&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;A href=" http://blogs.technet.com/industry_insiders/articles/407751.aspx"&gt;Read this&lt;/A&gt; for more.&lt;BR&gt;N&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;ice easy perf win :-)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;--- Neil&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=446004" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/Neil+Kidd/default.aspx">Neil Kidd</category></item><item><title>GacUtil</title><link>http://blogs.msdn.com/psfd/archive/2005/05/05/414918.aspx</link><pubDate>Thu, 05 May 2005 11:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:414918</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/414918.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=414918</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=414918</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Recently a number of people have been asking about deploying assemblies into the GAC (Global Assembly Cache) using GacUtil.exe. Now GacUtil is strictly a developer tool, and is not intended to be used for general deployment of assemblies, but I can see how some confusion has arisen. Some recent service packs, including .NET 1.1 SP1 and Windows Server 2003 SP1, accidentally left GacUtil.exe behind after installation in the %SystemRoot%\Microsoft.NET\Framework\v1.1.4322 directory. This has led some people to believe that we were shipping GacUtil as part of the .NET Framework.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;I contacted the team that own GacUtil.exe, and this was their response, “GacUtil never was moved to the framework from the SDK. It's always only legitimately shipped in the SDK. GacUtil got mistakenly left behind on customer machines after an install of an SP, which is what gives the impression it shipped with the redist. This is being corrected. End-users should not be using GacUtil. This is a dev-only tool, and on retail machines, MSI is the way to install assemblies to the GAC.” Now because the .NET SDK doesn't have a redistribution licence, it means than you would be infringing the licence agreement if you were to include GacUtil as part of your application installation.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;So, the recommendation is to use MSI, but not everybody uses MSIs and I've been asked on a number of occasions if there is a .NET API that can be used to install assemblies in the GAC. Well the short answer is no, but there is a Win32 API that you can call through P/Invoke. An example of this can be found &lt;A HREF="/junfeng/articles/229649.aspx"&gt;here&lt;/A&gt;. So there is no reason why you can't develop your own GacUtil if you so wish.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;-- Dave&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=414918" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/Dave+Allen/default.aspx">Dave Allen</category></item><item><title>NDOC Revision History Tags</title><link>http://blogs.msdn.com/psfd/archive/2005/04/18/409460.aspx</link><pubDate>Mon, 18 Apr 2005 21:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:409460</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/409460.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=409460</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=409460</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;I've been working a lot with &lt;/FONT&gt;&lt;A href="http://ndoc.sourceforge.net/"&gt;&lt;FONT face=Verdana size=2&gt;NDOC&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; recently and find the new &lt;/FONT&gt;&lt;A href="http://ndoc.sourceforge.net/content/extensibility.htm"&gt;&lt;FONT face=Verdana size=2&gt;extensibility&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; feature excellent. In the team I'm working with at the moment they wanted to be able to define a revision history section that would be displayed within the documentation, so after reading the docs I knocked up the following tags...&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;&lt;FONT face=Verdana size=2&gt;&amp;lt;revisionHistory&amp;gt;
  &amp;lt;revision author="Morgan Skinner" date="08/04/2005"&amp;gt;Initial Version&amp;lt;/revision&amp;gt;
&amp;lt;/revisionHistory&amp;gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;FONT face=Verdana size=2&gt;Then when I compile the documentation I then get the following in the output...&lt;/FONT&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;FONT face=Verdana size=2&gt;  &lt;IMG src="http://www.morganskinner.com/images/revisionhistory.png"&gt;&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;The main issue I came up with was getting the output to look the same as the NDOC stuff - this boils down to using the same CSS styles as are used by NDOC, which aren't well document (well, aren't really documented at all as far as I can see). Being a firm fan of &lt;/FONT&gt;&lt;A href="http://www.aisto.com/roeder/dotnet"&gt;&lt;FONT face=Verdana size=2&gt;Reflector&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; I had a poke around within the NDoc.Documenter.Msdn2 assembly and found the .xslt files used by NDOC. Then I found the appropriate styles for the stuff I wanted to put in and now have a nice integrated solution. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;In order to get all this magic to work, you need to create a .xslt file of your own to process your tags. You set this in the NDOC project using the ExtensibilityStylesheet property of the solution, and that's about all there is to it. I've created another folder in my .NET project called 'Documentation' and stored the .xslt file there (my NDOC project lives in the root directory for my project too). The .xslt for this is shown below...&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;&lt;FONT face=Verdana size=2&gt;&lt;FONT face="Courier New"&gt;&amp;lt;xsl:stylesheet version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  xmlns:MSHelp="http://msdn.microsoft.com/mshelp"&amp;gt;
  &amp;lt;xsl:template match="revisionHistory" mode="after-remarks-section"&amp;gt;
    &amp;lt;h4 class="dtH4"&amp;gt;Revision History&amp;lt;/h4&amp;gt;
        &amp;lt;div class="tablediv"&amp;gt;
      &amp;lt;table class="dtTABLE" cellspacing="0" width="100%" &amp;gt;
        &amp;lt;tr valign="top"&amp;gt;
                &amp;lt;th width="20%"&amp;gt;Author&amp;lt;/th&amp;gt;
                &amp;lt;th width="20%"&amp;gt;Date&amp;lt;/th&amp;gt;
                &amp;lt;th width="60%"&amp;gt;Description&amp;lt;/th&amp;gt;
        &amp;lt;/tr&amp;gt;
        &amp;lt;xsl:call-template name="revisions"/&amp;gt;
          &amp;lt;/table&amp;gt;
      &amp;lt;/div&amp;gt;
  &amp;lt;/xsl:template&amp;gt;
  &amp;lt;xsl:template name="revisions"&amp;gt;
    &amp;lt;xsl:for-each select="revision"&amp;gt;
      &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;xsl:value-of select="@author"/&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;xsl:value-of select="@date"/&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;xsl:apply-templates select="." mode="slashdoc"/&amp;gt;&amp;lt;/td&amp;gt;
      &amp;lt;/tr&amp;gt;
    &amp;lt;/xsl:for-each&amp;gt;
  &amp;lt;/xsl:template&amp;gt;
&amp;lt;/xsl:stylesheet&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;The main thing of note here is the use of &amp;lt;xsl:apply-templates select="." mode="slashdoc"/&amp;gt; within the descriptive part of the stylesheet - this ensures that any sub-tags (such as &amp;lt;see&amp;gt;) in your description will be processed by NDOC, thereby permitting you to link to other topics in your help file.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;With the stylesheet setup you should now be able to compile your help file and get a new section including the revision history section.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;The two styles I'm using here are dtH4 for the heading and dtTABLE. I found these by looking at the .xslt resources within the NDoc.Documenter.Msdn2 assembly. There are a lot of .xslt files included within the assembly but probably the most useful to start looking at is NDoc.Documenter.Msdn2.xslt.common.xslt.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;If you would like to download the .xslt file rather than type it in yourself, click &lt;A href="http://www.morganskinner.com/Articles/RevisionHistory/customtags.xslt"&gt;here&lt;/A&gt;.&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=409460" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/PSfD/default.aspx">PSfD</category><category domain="http://blogs.msdn.com/psfd/archive/tags/Morgan+Skinner/default.aspx">Morgan Skinner</category></item><item><title>Avalon Update</title><link>http://blogs.msdn.com/psfd/archive/2005/04/15/408775.aspx</link><pubDate>Fri, 15 Apr 2005 23:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:408775</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/408775.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=408775</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=408775</wfw:comment><description>&lt;P&gt;&lt;FONT face=Tahoma size=2&gt;If you've got some time definately consider checking out &lt;A href="http://channel9.msdn.com/ShowPost.aspx?PostID=58634"&gt;this&lt;/A&gt; Channel 9 Video on &lt;A href="http://msdn.microsoft.com/Longhorn/understanding/pillars/avalon/default.aspx"&gt;Avalon&lt;/A&gt; presented by the Avalon Product Team - it's great to see how Avalon is coming along and remember it will be supported on XP, Windows Server 2003 as well as Longhorn!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Tahoma size=2&gt;-- Darren&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=408775" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/PSfD/default.aspx">PSfD</category></item><item><title>Registration Free COM Articles</title><link>http://blogs.msdn.com/psfd/archive/2005/04/12/407574.aspx</link><pubDate>Tue, 12 Apr 2005 11:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:407574</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/407574.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=407574</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=407574</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Steve has got some great &lt;A href="/stevewhitepsfd/archive/2005/02/27/381251.aspx"&gt;articles &lt;/A&gt;on Registration Free COM, definately worth a read.&amp;nbsp; This techique is particulary useful for scenarios where you want to run different (incompatible) versions of the same COM component on one machine (which wasn't possible previously due to the registry).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;&lt;A href="http://msdn.microsoft.com/msdnmag/issues/04/05/clickonce/default.aspx"&gt;ClickOnce&lt;/A&gt; in &lt;A href="http://lab.msdn.microsoft.com/vs2005/default.aspx"&gt;Visual Studio 2005&lt;/A&gt; uses this approach for COM components as well.&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=407574" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/PSfD/default.aspx">PSfD</category></item><item><title>Windows Server 2003 - COM+ 1.5</title><link>http://blogs.msdn.com/psfd/archive/2005/04/12/407561.aspx</link><pubDate>Tue, 12 Apr 2005 10:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:407561</guid><dc:creator>psfd</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/psfd/comments/407561.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=407561</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=407561</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;COM+ 1.5 forms an integral part of Windows Server 2003 and has been much improved over the version that shipped with Windows 2000 Server. Features designed to increase the abilities (scalability, availability and manageability) of COM+ applications have been added. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;COM+ Partitions&lt;/STRONG&gt;&lt;BR&gt;In this release, COM+ introduces support for COM+ partitions, a feature that allows multiple versions of COM+ applications to be installed and configured on the same machine. This feature can save cost and time-consuming effort of using multiple servers to manage different versions of an application or building services into the application to handle different versions of components. On a single machine, each partition acts, in effect, as a virtual server. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;COM+ Services Without Components&lt;/STRONG&gt;&lt;BR&gt;With COM+ 1.5, you can use the services provided by COM+ without needing to build a component to contain the methods that call those services. This greatly benefits developers who do not normally use components but want to use COM+ services such as transactions or the COM+ Tracker. By using COM+ services without components, developers can avoid the overhead of creating a component that is used to access only the COM+ services that are required. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Application Recycling&lt;/STRONG&gt;&lt;BR&gt;Application recycling significantly increases the overall stability of COM+ applications. Because the performance of most applications can degrade over time due to factors such as memory leaks, reliance on third-party code, and non-scalable resource usage, COM+ application recycling provides a simple solution to gracefully shut down a process associated with an application and restart it. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Process Dumping&lt;/STRONG&gt;&lt;BR&gt;Troubleshooting applications in a production environment can be very difficult without disturbing the running processes. COM+ now provides a solution through its new process dump feature. This feature allows the system administrator to dump the entire state of a process without terminating it. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;References: &lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A title=COM+ href="http://msdn.microsoft.com/library/en-us/cossdk/htm/complusportal_9o9x.asp?frame=true"&gt;&lt;FONT face=Verdana size=2&gt;COM+&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;
&lt;LI&gt;&lt;A title="COM+ Services Without Components" href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cossdk/htm/pgservices_serviceswithoutcomponents_7u5v.asp"&gt;&lt;FONT face=Verdana size=2&gt;COM+ Services Without Components&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;-- James&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=407561" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/PSfD/default.aspx">PSfD</category></item><item><title>Windows Server 2003 - Security</title><link>http://blogs.msdn.com/psfd/archive/2005/04/12/407560.aspx</link><pubDate>Tue, 12 Apr 2005 10:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:407560</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/407560.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=407560</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=407560</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;As part of its commitment to reliability security and dependable computing, Microsoft has reviewed every line of code underlying its Windows Server family as part of its enhanced effort to identify possible fail points and exploitable weaknesses. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Increased Web Server Security&lt;/STRONG&gt;&lt;BR&gt;The new basic security features of IIS 6.0 have already been discussed, but there are also some advanced security features in IIS 6.0 that include: selectable cryptographic services, advanced digest authentication, and configurable access control of processes. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;SSL Client Authentication Improvements&lt;/STRONG&gt;&lt;BR&gt;In Windows Server 2003 the SSL session cache can be shared by multiple processes. This reduces the number of times a user has to re-authenticate with applications, and reduces CPU cycles on the application server. This leads to a performance improvement of over 35 percent when using the secure sockets layer (SSL). &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Active Directory Application Mode (ADAM)&lt;/STRONG&gt;&lt;BR&gt;ADAM is an independent mode of Active Directory that provides dedicated directory services for applications. Although ADAM independently provides directory storage and access for applications, ADAM uses the same standard application programming interfaces (APIs) as Active Directory to manage and access the application data. The resulting conceptual and programming compatibility makes ADAM ideal for applications that require directory services, but do not require the complete infrastructure features of Active Directory. ADAM does not ship with Windows Server 2003 but it is available as a free download from Microsoft. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;References: &lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A title="What's New in Windows Server 2003 Security" href="http://www.microsoft.com/windowsserver2003/evaluation/overview/technologies/security.mspx"&gt;&lt;FONT face=Verdana size=2&gt;What's New in Windows Server 2003 Security&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;
&lt;LI&gt;&lt;A title="Technical Overview of Windows Server 2003 Security Services" href="http://www.microsoft.com/windowsserver2003/techinfo/overview/security.mspx"&gt;&lt;FONT face=Verdana size=2&gt;Technical Overview of Windows Server 2003 Security Services&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;
&lt;LI&gt;&lt;A title="Active Directory Application Mode (ADAM)" href="http://msdn.microsoft.com/library/en-us/adam/adam/active_directory_application_mode.asp?frame=true"&gt;&lt;FONT face=Verdana size=2&gt;Active Directory Application Mode (ADAM)&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;-- James&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=407560" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/PSfD/default.aspx">PSfD</category></item><item><title>Windows Server 2003 - IIS 6.0</title><link>http://blogs.msdn.com/psfd/archive/2005/04/12/407559.aspx</link><pubDate>Tue, 12 Apr 2005 10:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:407559</guid><dc:creator>psfd</dc:creator><slash:comments>6</slash:comments><comments>http://blogs.msdn.com/psfd/comments/407559.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=407559</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=407559</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;IIS 6.0 is a ground up rewrite of the previous incarnation of IIS, version 5.0. IIS has been redesigned to improve aspects of all the main feature areas: reliability, availability, manageability, scalability and performance. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Fault-tolerant process architecture&lt;/STRONG&gt;&lt;BR&gt;The IIS 6.0 fault-tolerant process architecture isolates Web sites and applications into self-contained units called application pools. Application pools provide a convenient way to administer a set of Web sites and applications and increase reliability, because errors in one application pool cannot cause another application pool, or the server itself, to fail. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Health monitoring&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 periodically checks the status of an application pool with automatic restart on failure of the Web sites and applications within that application pool, increasing application availability. IIS 6.0 protects the server, and other applications, by automatically disabling Web sites and applications that fail too often within a short amount of time. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Automatic process recycling&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 automatically stops and restarts faulty Web sites and applications based on a flexible set of criteria, including CPU utilization and memory consumption, while queuing requests. IIS 6.0 also maintains the client TCP/IP connection when a worker process is being recycled, isolating Web services client applications from back-end Web application instability. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Rapid-fail protection&lt;/STRONG&gt;&lt;BR&gt;If an application fails too often within a short amount of time, IIS 6.0 will automatically disable it and return a "503 Service Unavailable" error message to any new or queued requests to the application. Custom actions, for example, a debugging action or administrator notification, can also be triggered. Rapid-fail protection can protect a Web server against denial of service attacks. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;XML-based configuration file&lt;/STRONG&gt;&lt;BR&gt;The XML-formatted, plain text metabase in IIS 6.0 provides improved backup and restore capabilities for servers that experience critical failures. It also provides improved troubleshooting and metabase corruption recovery. Direct editing, using common text editing tools, provides greater manageability. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Edit-while-running&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 gives administrators the important capability to change the server configuration while the server continues running. For example, this feature can be used to add a new site, create virtual directories, or change the configuration of application pools and worker processes—all while IIS 6.0 continues to process requests—with no recompilation or restart required. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Command-line and script-based administration&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 administrators can use the Windows Server 2003 command-line to accomplish many common management tasks. With a single command, administrators can manage multiple local or remote computers. IIS 6.0 also features a complete scripting environment for automating common system administration tasks from the command-line without having to use a graphical user interface. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Support for WMI&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 provides full support for Windows Management Instrumentation (WMI), giving Web administrators access to important system management data, such as performance counters and configuration files. The WMI interfaces, similar in nature to the Active Directory Service Interfaces (ADSI) that are still supported, are used in administration scripts and can also be used to modify the XML-based configuration metabase. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Server Consolidation&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 performance has increased dramatically over previous versions of the server, with a single server able to host many more sites and applications. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Site scalability&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 has improved the way the operating system uses internal resources. For example, IIS 6.0 does not pre-allocate resources at initialization time. Many more sites can be hosted on a single server running IIS 6.0, and a larger number of worker processes can be concurrently active. Starting up and shutting down a server is faster, compared with earlier versions of IIS. All of these improvements contribute to increased site scalability with IIS 6.0. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;New kernel-mode driver, HTTP.sys&lt;/STRONG&gt;&lt;BR&gt;Windows Server 2003 introduces a new kernel-mode driver, HTTP protocol stack (HTTP.sys), for HTTP parsing and caching, providing increased scalability and performance. IIS 6.0 is built on top of HTTP.sys and is specifically tuned to increase Web server throughput. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Web gardens&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 worker process isolation mode also enables multiple worker processes to be configured to service requests for a given application pool, a configuration known as a Web garden. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Processor affinity&lt;/STRONG&gt;&lt;BR&gt;Processor affinity, when set, enables IIS 6.0 worker processes to run on specific microprocessors or CPUs. Processor affinity can also be used with Web gardens that run on multiprocessor computers where clusters of CPUs have been dedicated to specific application pools. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Increased Security&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 is far more secure than IIS 4x or IIS 5x, with many new features designed to increase the security of the Web infrastructure. IIS 6.0 is also "locked down" out of the box with the strongest time-outs and content limits set by default. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Locked-down server&lt;/STRONG&gt;&lt;BR&gt;IIS 6.0 provides significantly improved security. To reduce the attack surface of systems, IIS 6.0 is not installed by default on Windows Server 2003—administrators must explicitly select and install it. IIS 6.0 ships in a locked-down state, serving only static content. Using the Web service extension node, Web site administrators can enable or disable IIS functionality based on the individual needs of the organization. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Web service extensions list&lt;/STRONG&gt;&lt;BR&gt;The default installation of IIS will not compile, execute, nor serve files with dynamic extensions. In order to have them served, each acceptable file extension must be added to the Web service extensions list. This requirement prevents anyone from calling a page with a dynamic extension that has not been secured. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Default low-privilege account&lt;/STRONG&gt;&lt;BR&gt;All IIS 6.0 worker processes—by default—run as Network Service user accounts, a new, built-in account type with limited operating system privileges, on Windows Server 2003. All ASP built-in functions always run as low-privileged accounts (anonymous user). &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;References: &lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A title="Top 10 Benefits Microsoft.com Realized by Using IIS 6.0" href="http://www.microsoft.com/windowsserver2003/evaluation/whyupgrade/top10iis6.mspx"&gt;&lt;FONT face=Verdana size=2&gt;Top 10 Benefits Microsoft.com Realized by Using IIS 6.0&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;
&lt;LI&gt;&lt;A title="What's New in Internet Information Services 6.0" href="http://www.microsoft.com/windowsserver2003/evaluation/overview/technologies/iis.mspx"&gt;&lt;FONT face=Verdana size=2&gt;What's New in Internet Information Services 6.0&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;
&lt;LI&gt;&lt;A title="Technical Overview of Internet Information Services (IIS) 6.0" href="http://www.microsoft.com/windowsserver2003/techinfo/overview/iis.mspx"&gt;&lt;FONT face=Verdana size=2&gt;Technical Overview of Internet Information Services (IIS) 6.0&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;-- James&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=407559" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/PSfD/default.aspx">PSfD</category></item><item><title>Windows Server 2003 - Core enhancements</title><link>http://blogs.msdn.com/psfd/archive/2005/04/12/407557.aspx</link><pubDate>Tue, 12 Apr 2005 10:50:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:407557</guid><dc:creator>psfd</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/psfd/comments/407557.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=407557</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=407557</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;In the development for Windows Server 2003, much work was done to improve the scalability of the kernel (the core set of functionality that the entire operating system relies on). Detailed analysis, with both software and hardware tools on systems with up to 32 processors, resulted in the improvements being made in the following key areas: &lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Scheduling&lt;/FONT&gt; 
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Memory management&lt;/FONT&gt; 
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Kernel spinlocks&lt;/FONT&gt; 
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Heap&lt;/FONT&gt; 
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Processes, threads, handles, objects, and named pipes&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;FONT face=Verdana size=2&gt;Given that all other Windows application server components (such as Active Directory, IIS, COM+ etc) and all third party applications make use of these features extensively, the scalability and efficiency benefits are felt throughout the entire application environment. In addition to making great scalability improvements, the changes to the kernel have also had a large impact on performance of the operating system and this is a benefit that can be dramatic even on single processor machines. VeriTest, an independent test lab, has found that Windows Server 2003 outperforms Windows 2000 Server by a dramatic margin—typically performing two to three times faster on the same hardware. &lt;/FONT&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Compared to Windows 2000 Server, Windows Server 2003 is: &lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Half as fast again as a file server.&lt;/FONT&gt; 
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Three times faster serving dynamic Web content.&lt;/FONT&gt; 
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Three times faster serving static Web content.&lt;/FONT&gt; 
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Three times faster performing LDAP operations.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;I&gt;(Averages taken between a single processor and an eight processor machine)&lt;/I&gt; &lt;/FONT&gt;&lt;/FONT&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;References:&lt;/I&gt; &lt;/FONT&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A title="Windows Server 2003 Kernel Scaling Improvements" href="http://www.microsoft.com/windowsserver2003/evaluation/performance/scaling.mspx"&gt;&lt;FONT face=Verdana size=2&gt;Windows Server 2003 Kernel Scaling Improvements&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;
&lt;LI&gt;&lt;A title="Lab Report: Windows Server 2003 Outperforms Predecessors" href="http://www.microsoft.com/windowsserver2003/evaluation/performance/etest.mspx"&gt;&lt;FONT face=Verdana size=2&gt;Lab Report: Windows Server 2003 Outperforms Predecessors&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;
&lt;LI&gt;&lt;A title="Windows Server 2003 Benchmarks" href="http://www.microsoft.com/windowsserver2003/evaluation/performance/benchmarks/default.mspx"&gt;&lt;FONT face=Verdana size=2&gt;Windows Server 2003 Benchmarks&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;FONT face=Verdana size=2&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;-- James&lt;/FONT&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=407557" width="1" height="1"&gt;</description></item><item><title>New MSDN Article on extending Windows common dialog boxes</title><link>http://blogs.msdn.com/psfd/archive/2005/04/12/407555.aspx</link><pubDate>Tue, 12 Apr 2005 10:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:407555</guid><dc:creator>psfd</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/psfd/comments/407555.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=407555</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=407555</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;&lt;A href="http://martinparry.com/cooboogler/"&gt;Martin Parry&lt;/A&gt; from our team has recently written a &lt;/FONT&gt;&lt;FONT face=Verdana size=2&gt;&lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwinforms/html/extensibledialogs.asp"&gt;MSDN article&lt;/A&gt; &lt;/FONT&gt;&lt;FONT face=Verdana size=2&gt;on how to place your own Windows Forms controls insde the Windows common dialog boxes, check it out!&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=407555" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/psfd/archive/tags/Martin+Parry/default.aspx">Martin Parry</category><category domain="http://blogs.msdn.com/psfd/archive/tags/MSDN+Articles/default.aspx">MSDN Articles</category></item><item><title>Reasons to migrate to Windows Server 2003</title><link>http://blogs.msdn.com/psfd/archive/2005/04/12/407556.aspx</link><pubDate>Tue, 12 Apr 2005 09:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:407556</guid><dc:creator>psfd</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/psfd/comments/407556.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=407556</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=407556</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;I realise that this is a bit late for many people, but I have been helping one of my customers with a justification to move to Windows Server 2003 from Windows 2000 Server. It is specifically targeted at the main application that they develop which is a .NET Framework 1.1 based smart client app that talks, via Web Services, to a server side app also written for .NET 1.1 (this stores data in a set of SQL Server 2000 databases). I will post a series of articles extracted from this justification. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;EM&gt;Please note:&lt;/EM&gt; this is &lt;STRONG&gt;not&lt;/STRONG&gt; an exhaustive list - it is simply the features that are of interest for this particular application. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;But if you are going through a similar process at the moment it might be useful to paste this information into a document for the perusal of the powers that be. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;-- James&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=407556" width="1" height="1"&gt;</description></item><item><title>Welcome to the new Microsoft UK PSfD Team blog!</title><link>http://blogs.msdn.com/psfd/archive/2005/04/12/407547.aspx</link><pubDate>Tue, 12 Apr 2005 09:22:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:407547</guid><dc:creator>psfd</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/psfd/comments/407547.aspx</comments><wfw:commentRss>http://blogs.msdn.com/psfd/commentrss.aspx?PostID=407547</wfw:commentRss><wfw:comment>http://blogs.msdn.com/psfd/rsscomments.aspx?PostID=407547</wfw:comment><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Welcome to the new Microsoft UK PSfD Team blog!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;PSfD is a team of Application Development Consultants based in the UK. There are around 20 consultants currently in our team all of whom have strong developer backgrounds.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;We work with a broad range of customers from small ISVs (Independent Software Vendors) up to large enterprises, and we engage in all aspects of the software development lifecycle from architecture through to performance and scale testing.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;We get involved in all kinds of development-related work including reviewing application design or specific code, helping to troubleshoot problems, writing code samples, delivering training, and do just about anything else involved with software development.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;In the course of our day-to-day activities we cover virtually every Microsoft technology for which development makes sense and, as a result, we have lots of information, advice, samples, etc. to share. Hence, we’ve launched this blog.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;&lt;a href="http://blogs.msdn.com/darrenj"&gt;Darren Jefford&lt;/A&gt;, &lt;A href="http://adrianba.net"&gt;Adrian Bateman&lt;/A&gt;, &lt;A href="https://blogs.msdn.com/stevewhitepsfd"&gt;Steve White&lt;/A&gt;, &lt;A href="http://www.morganskinner.com/blog"&gt;Morgan Skinner&lt;/A&gt;&amp;nbsp;and &lt;A href="http://martinparry.com/cooboogler/"&gt;Martin&amp;nbsp;Parry&lt;/A&gt;&amp;nbsp;are PSfD team members who already have blogs, so those will give you an idea of what you can expect to see. We intend to aggregate some of those blog entries into this main feed.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;We hope you’ll find the blog interesting. If you’ve got any requests for things you’d like to see then please let us know!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;--Darren&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=407547" width="1" height="1"&gt;</description></item></channel></rss>