<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.iis.net/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/" xmlns:cs="http://blogs.iis.net/"><channel><title>Microsoft Web Deployment Team Blog : PDC</title><link>http://blogs.iis.net/msdeploy/archive/tags/PDC/default.aspx</link><description>Tags: PDC</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>The MSDeploy SQL Database Provider (dbFullSql)</title><link>http://blogs.iis.net/msdeploy/archive/2008/11/10/the-msdeploy-sql-database-provider-dbfullsql.aspx</link><pubDate>Mon, 10 Nov 2008 20:34:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2736460</guid><dc:creator>yaminij</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/msdeploy/rsscomments.aspx?PostID=2736460</wfw:commentRss><comments>http://blogs.iis.net/msdeploy/archive/2008/11/10/the-msdeploy-sql-database-provider-dbfullsql.aspx#comments</comments><description>&lt;H2&gt;Overview&lt;/H2&gt;
&lt;P&gt;The MSDeploy SQL Database provider, also called dbFullSql is desgined for first-time installation or deployment of SQL databases to a specified destination database. This blog will serve more as a first step towards using the dbFullSql provider that recently shipped with the&amp;nbsp;&lt;A href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1602" mce_href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1602"&gt;&lt;FONT color=#669966&gt;Beta 2&lt;/FONT&gt;&lt;/A&gt; version of MSDeploy. The provider can be used in the following ways&lt;/P&gt;
&lt;P&gt;1) Syncing a single source database to an empty or nonexistent destination database&lt;/P&gt;
&lt;P&gt;2) Syncing a source database to an editable .sql file&lt;/P&gt;
&lt;P&gt;3) Sync from a .sql file to an existing destination database.&lt;/P&gt;
&lt;H2&gt;Implementation&lt;/H2&gt;
&lt;P&gt;The dbFullSql provider uses SMO internally to generate the source database scripts and apply them to the target database.&amp;nbsp;The following &lt;A href="http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.scriptingoptions_properties.aspx" mce_href="http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.scriptingoptions_properties.aspx"&gt;&lt;FONT color=#669966&gt;SMO Scripting Options&lt;/FONT&gt;&lt;/A&gt; are set to true by default inside the dbFullSql provider&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a) ScriptSchema&lt;/P&gt;
&lt;P&gt;b) ScriptData&lt;/P&gt;
&lt;P&gt;c) DriAll&lt;/P&gt;
&lt;P&gt;d) Triggers&lt;/P&gt;
&lt;P&gt;e) Indexes&lt;/P&gt;
&lt;P&gt;f) NoFileGroup&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;We support passing all SMO options, that take boolean values, as parameters to the dbFullSql provider.&amp;nbsp;For more examples on how to use the SMO options with the dbFullSql provider, please check the command-line usage below. Since the script is only generated from the database specified as the source, it is not required to specify the SMO option as a parameter on the destination as well. &lt;/P&gt;
&lt;P&gt;The&amp;nbsp;dbFullSql provider will also create the target database&amp;nbsp;if it does not exist. If you would like to drop the destination database and create a new one on sync, you can use the dropDestinationDatabase=true parameter on the destination&lt;/P&gt;
&lt;P&gt;The dbFullSql provider also has transactional support during the execution of the&amp;nbsp;SQL scripts on the destination database. This means, if there is an error in the middle of the sync, all the changes made to the destination database until then will&amp;nbsp;be rolled back.&lt;/P&gt;
&lt;H2&gt;Command-line Usage&lt;/H2&gt;
&lt;P&gt;1) To sync a single source database (eg. SourceDatabase), to an empty or nonexistent destination database, you should run the following command&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Syntax:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;msdeploy.exe -verb:sync -source:dbFullSql="&amp;lt;source db connection string&amp;gt;" -dest:dbFullSql="&amp;lt;dest db connection string&amp;gt;"&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;msdeploy.exe -verb:sync -source:dbFullSql="Data Source=.\SQLEXPRESS;Initial Catalog=SourceDatabase;Integrated Security=true" &lt;/P&gt;
&lt;P&gt;-dest:dbFullSql="Data Source=.\SQLEXPRESS;Initial Catalog=DestDatabase;Integrated Security=true"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;2) To sync a source database (eg. SourceDatabase), to an editable .sql file&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Syntax:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;msdeploy.exe -verb:sync -source:dbFullSql="&amp;lt;source db connection string&amp;gt;" -dest:dbFullSql="&amp;lt;absolutePath to a .sql file&amp;gt;"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;msdeploy.exe -verb:sync -source:dbFullSql="Data Source=.;Initial Catalog=SourceDatabase;Integrated Security=true" &lt;/P&gt;
&lt;P&gt;-dest:dbFullSql="d:\SourceDb.sql"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;3) To sync a .sql file to an existing destination database&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Syntax:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;msdeploy.exe -verb:sync -source:dbFullSql="&amp;lt;absolutePath to a .sql file&amp;gt;" -dest:dbFullSql="&amp;lt;dest db connection string&amp;gt;"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;msdeploy.exe -verb:sync -source:dbFullSql="d:\SourceDb.sql" &lt;/P&gt;
&lt;P&gt;-dest:dbFullSql="Data Source=SqlMachine\SQLEXPRESS;Initial Catalog=DestDatabase;User Id=user1;password=blah"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;4)&amp;nbsp; To specify SMO options as parameters to the dbFullSql provider&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Syntax:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;msdeploy.exe -verb:sync -source:dbFullSql="&amp;lt;absolutePath to a .sql file&amp;gt;",smoOptionName=value -dest:dbFullSql="&amp;lt;dest db connection string&amp;gt;"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;In order to skip scripting data on the source database and to sync only schema, you can run the following command&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;msdeploy.exe -verb:sync -source:dbFullSql="Data Source=.\SQLEXPRESS;Initial Catalog=SourceDatabase;Integrated Security=true", ScriptData=false&lt;/P&gt;
&lt;P&gt;-dest:dbFullSql="Data Source=.\SQLEXPRESS;Initial Catalog=DestDatabase;Integrated Security=true"&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;In order to include schema-qualified table references for foreign key constraints into the generated script, you can pass SchemaQualifyForeignKeysReferences=true to the dbFullSql provider&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;msdeploy.exe -verb:sync -source:dbFullSql="Data Source=.\SQLEXPRESS;Initial Catalog=SourceDatabase;Integrated Security=true", SchemaQualifyForeignKeysReferences=false&lt;/P&gt;
&lt;P&gt;-dest:dbFullSql="Data Source=.\SQLEXPRESS;Initial Catalog=DestDatabase;Integrated Security=true"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;5) You could also sync a database to a package or an archive&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;a) msdeploy.exe -verb:sync -source:dbFullSql="Data Source=.\SQLEXPRESS;Initial Catalog=SourceDatabase;Integrated Security=true" &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -dest:archivedir="c:\archive"&lt;/P&gt;
&lt;P&gt;b) msdeploy.exe -verb:sync -source:dbFullSql="Data Source=.\SQLEXPRESS;Initial Catalog=SourceDatabase;Integrated Security=true" &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -dest:package="c:\package.zip"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;6) To sync multiple databases and database scripts to multiple databases, you can use a manifest file with the MSDeploy manifest provider. &lt;/P&gt;
&lt;H2&gt;Limitations &lt;/H2&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The dbFullSql provider cannot be used for incremental publishing to a target database. You can incrementally publish to a target database, only if there is no collision between existing objects&amp;nbsp;on the source database and the target database.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The dbFullSql provider operates at the database level only and not at the SQL Server level. Hence any objects at the server level, like logins, on which objects at the database level depend on (like users) will not be scripted.&lt;/P&gt;
&lt;P&gt;We currently do not support passing any non-boolean SMO option to the dbFullSql provider.&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;H2&gt;References&lt;/H2&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;For more information about SMO scripting options, you can refer this &lt;A href="http://technet.microsoft.com/fr-fr/library/microsoft.sqlserver.management.smo.scriptingoptions_properties.aspx" mce_href="http://technet.microsoft.com/fr-fr/library/microsoft.sqlserver.management.smo.scriptingoptions_properties.aspx"&gt;&lt;FONT color=#669966&gt;link&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;For information on how to download and install SMO and MSDeploy in general, you can refer the &lt;A href="http://www.iis.net/downloads/files/MSDeploy/beta2/MSDeployCHM.zip" mce_href="http://www.iis.net/downloads/files/MSDeploy/beta2/MSDeployCHM.zip"&gt;&lt;FONT color=#669966&gt;MSDeploy Help File&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2736460" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/msdeploy/archive/tags/IIS/default.aspx">IIS</category><category domain="http://blogs.iis.net/msdeploy/archive/tags/Web+Deployment/default.aspx">Web Deployment</category><category domain="http://blogs.iis.net/msdeploy/archive/tags/PDC/default.aspx">PDC</category></item><item><title>The Web Deployment Tool Beta 2 is now available!</title><link>http://blogs.iis.net/msdeploy/archive/2008/10/29/the-web-deployment-tool-beta-2-is-now-available.aspx</link><pubDate>Wed, 29 Oct 2008 21:31:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2713301</guid><dc:creator>faith_a</dc:creator><slash:comments>23</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/msdeploy/rsscomments.aspx?PostID=2713301</wfw:commentRss><comments>http://blogs.iis.net/msdeploy/archive/2008/10/29/the-web-deployment-tool-beta-2-is-now-available.aspx#comments</comments><description>&lt;P&gt;The IIS team is proud to announce the latest release of the Web Deployment Tool Beta 2, which includes significant new features for both IT professionals and developers.&amp;nbsp; In addition to our existing functionality of server synchronization and migration, but we’ve added web application packaging and deployment with integration with IIS Manager and the upcoming Visual Studio 2010!&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;Because the Beta 2 release has brand-new functionality around application packaging not previously available, this release is not a production-ready or Go Live release. We will be changing and adding more functionality in the next milestone after Beta 2.&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #4f81bd"&gt;Easily deploy, store and redeploy Web applications. &lt;BR&gt;&lt;/SPAN&gt;The Web Deployment Tool enables you to package configuration and content of your installed Web applications, including SQL databases, and use the packages for storage or redeployment. These packages, which may include certificates, can be deployed using the IIS Manager interface without requiring administrative privileges. This tool also integrates in Visual Studio 2010, which helps developers streamline the development and deployment of Web applications.&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #4f81bd"&gt;Efficiently synchronize your server farm.&lt;BR&gt;&lt;/SPAN&gt;The Web Deployment Tool allows you to efficiently synchronize sites, applications or servers across your IIS 7.0 server farm by transferring only those changes which need synchronization. The tool simplifies the process by automatically determining the configuration, content, databases and certificates to be synchronized for a specific site. In addition to the default behavior, you still have the option to specify additional “providers” for the synchronization to modify COM, GAC and registry settings.&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #4f81bd"&gt;Migrate Web applications between IIS 6.0 and IIS 7.0 with ease.&lt;BR&gt;&lt;/SPAN&gt;Simplify the planning of your IIS 6.0 to IIS 7.0 migrations by determining incompatibilities and previewing the proposed changes before starting the process. Learning about any potential issues in advance gives you the chance to take corrective measures considerably improving your chances of having a smooth execution of your migration.&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;We have some new walkthroughs to help you understand and try out the application deployment process in the IIS Manager. Please try out the tool and give us feedback in the forums. We look forward to hearing about your experiences and what else you’d like to see us add.&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;Downloads&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #434343"&gt;x86 version: &lt;/SPAN&gt;&lt;A href="http://go.microsoft.com/fwlink/?LinkId=109365" mce_href="http://go.microsoft.com/fwlink/?LinkId=109365"&gt;&lt;SPAN style="COLOR: #034af3"&gt;http://go.microsoft.com/fwlink/?LinkId=109365&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="COLOR: #434343"&gt;&lt;BR&gt;x64 version: &lt;/SPAN&gt;&lt;A href="http://go.microsoft.com/fwlink/?LinkId=109366" mce_href="http://go.microsoft.com/fwlink/?LinkId=109366"&gt;&lt;SPAN style="COLOR: #034af3"&gt;http://go.microsoft.com/fwlink/?LinkId=109366&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;Learn the Basics (Quick Guides)&lt;BR&gt;&lt;SPAN style="COLOR: #434343"&gt;1. &lt;/SPAN&gt;&lt;A title="Web Deployment Tool Overview" href="http://learn.iis.net/page.aspx/426/overview-of-ms-deploy/" mce_href="http://learn.iis.net/page.aspx/426/overview-of-ms-deploy/"&gt;Web Deployment Tool Overview&lt;/A&gt;&lt;SPAN style="COLOR: #434343"&gt;&amp;nbsp;(overview of the features)&amp;nbsp;&lt;BR&gt;2. &lt;/SPAN&gt;&lt;A title="Installing the Web Deployment Tool" href="http://learn.iis.net/page.aspx/421/installing-ms-deploy/" mce_href="http://learn.iis.net/page.aspx/421/installing-ms-deploy/"&gt;Installing the Web Deployment Tool&lt;/A&gt;&lt;SPAN style="COLOR: #434343"&gt; (installation and remote service options)&lt;/SPAN&gt;&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #434343"&gt;&lt;/SPAN&gt;Learn How to Package and Deploy (Quick Guides)&lt;BR&gt;&lt;SPAN style="COLOR: #434343"&gt;1. &lt;/SPAN&gt;&lt;A title="Create a Package" href="http://learn.iis.net/page.aspx/514/create-a-package/" mce_href="http://learn.iis.net/page.aspx/514/create-a-package/"&gt;Create a Package&lt;/A&gt;&lt;SPAN style="COLOR: #434343"&gt;&amp;nbsp;(creating a package including content, databases and more)&amp;nbsp;&lt;BR&gt;2. &lt;/SPAN&gt;&lt;A title="Install a Package" href="http://learn.iis.net/page.aspx/515/install-a-package/" mce_href="http://learn.iis.net/page.aspx/515/install-a-package/"&gt;Install a Package&lt;/A&gt;&lt;SPAN style="COLOR: #434343"&gt; (deploying the package to a local or remote machine)&lt;BR&gt;3. &lt;/SPAN&gt;&lt;A class="" title="Configure the Delegation Service" href="http://learn.iis.net/page.aspx/516/configure-the-web-deployment-handler/" mce_href="http://learn.iis.net/page.aspx/516/configure-the-web-deployment-handler/"&gt;Configure the Web Deployment Handler&lt;/A&gt;&lt;SPAN style="COLOR: #434343"&gt; (enable deployment to an IIS 7.0 server)&lt;/SPAN&gt;&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #434343"&gt;More quick guides can be found at the &lt;/SPAN&gt;&lt;A href="http://learn.iis.net/page.aspx/346/web-deployment-tool/" mce_href="http://learn.iis.net/page.aspx/346/web-deployment-tool/"&gt;Web Deployment Tool main page&lt;/A&gt;&lt;SPAN style="COLOR: #434343"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #434343"&gt;&lt;/SPAN&gt;Get Help or Interact with the Community&lt;BR&gt;&lt;SPAN style="COLOR: #434343"&gt;Web Deployment Tool forum: &lt;/SPAN&gt;&lt;A href="http://forums.iis.net/1144.aspx" mce_href="http://forums.iis.net/1144.aspx"&gt;&lt;SPAN style="COLOR: #034af3"&gt;http://forums.iis.net/1144.aspx&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="COLOR: #434343"&gt; &lt;BR&gt;Web Deployment Team blog: &lt;/SPAN&gt;&lt;A href="http://blogs.iis.net/msdeploy/" mce_href="http://blogs.iis.net/msdeploy/"&gt;http://blogs.iis.net/msdeploy/&lt;/A&gt;&lt;SPAN style="COLOR: #434343"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #434343"&gt;&lt;/SPAN&gt;Happy deployments! &lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2713301" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/msdeploy/archive/tags/IIS/default.aspx">IIS</category><category domain="http://blogs.iis.net/msdeploy/archive/tags/Deployment/default.aspx">Deployment</category><category domain="http://blogs.iis.net/msdeploy/archive/tags/PDC/default.aspx">PDC</category></item><item><title>The Web Deployment Tool is @ PDC!</title><link>http://blogs.iis.net/msdeploy/archive/2008/10/27/the-web-deployment-tool-is-pdc.aspx</link><pubDate>Mon, 27 Oct 2008 20:49:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2708967</guid><dc:creator>faith_a</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/msdeploy/rsscomments.aspx?PostID=2708967</wfw:commentRss><comments>http://blogs.iis.net/msdeploy/archive/2008/10/27/the-web-deployment-tool-is-pdc.aspx#comments</comments><description>&lt;P mce_keep="true"&gt;Just wanted to let everyone know that a bunch of us from the IIS and MS Deploy team are here at PDC 2008 in sunny Los Angeles! If you're here for PDC, please stop by the Windows Server 2008 Web Platform booth or check out our great talks on web deployment. We have some great news being announced and we'd love to meet folks that are currently&amp;nbsp;using or interested in using the Web Deployment Tool.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Happy deployments!&lt;/P&gt;
&lt;P mce_keep="true"&gt;Faith Allington, and the entire Web Deployment Tool team&lt;/P&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2708967" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/msdeploy/archive/tags/IIS+News/default.aspx">IIS News</category><category domain="http://blogs.iis.net/msdeploy/archive/tags/IIS/default.aspx">IIS</category><category domain="http://blogs.iis.net/msdeploy/archive/tags/Deployment/default.aspx">Deployment</category><category domain="http://blogs.iis.net/msdeploy/archive/tags/Web+Deployment/default.aspx">Web Deployment</category><category domain="http://blogs.iis.net/msdeploy/archive/tags/PDC/default.aspx">PDC</category></item></channel></rss>