<?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>IIS SEO Toolkit - Start new analysis automatically through code</title><link>http://blogs.msdn.com/b/carlosag/archive/2009/11/18/iis-seo-toolkit-start-new-analysis-automatically-through-code.aspx</link><description>One question that I've been asked several times is: &amp;quot; Is it possible to schedule the IIS SEO Toolkit to run automatically every night? &amp;quot; . Other related questions are: &amp;quot; Can I automate the SEO Toolkit so that as part of my build process</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: IIS SEO Toolkit - Start new analysis automatically through code</title><link>http://blogs.msdn.com/b/carlosag/archive/2009/11/18/iis-seo-toolkit-start-new-analysis-automatically-through-code.aspx#10406948</link><pubDate>Tue, 02 Apr 2013 14:57:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10406948</guid><dc:creator>MS</dc:creator><description>&lt;p&gt;Thanks Carlos for the sample.&lt;/p&gt;
&lt;p&gt;Is there any upper limit for MaximumLinkCount?&lt;/p&gt;
&lt;p&gt;I&amp;#39;m using this tool to crawl site which has lot of archived content. Is it possible to configure the bot so that it can read a specific meta tag on the page and skip it? We of course we don&amp;#39;t want the bot to report it as a 404 :)&lt;/p&gt;
&lt;p&gt;Looking forward to hear from you :)&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10406948" width="1" height="1"&gt;</description></item><item><title>re: IIS SEO Toolkit - Start new analysis automatically through code</title><link>http://blogs.msdn.com/b/carlosag/archive/2009/11/18/iis-seo-toolkit-start-new-analysis-automatically-through-code.aspx#10069439</link><pubDate>Wed, 29 Sep 2010 18:54:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10069439</guid><dc:creator>CarlosAg</dc:creator><description>&lt;p&gt;@Jim, In order to compile it you have to add a reference to the right DLL, the W3C validator module is not part of the core, so you need to either include the code as part of the DLL or add a reference to the Validator Module and make sure it is exposed as a public class.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10069439" width="1" height="1"&gt;</description></item><item><title>re: IIS SEO Toolkit - Start new analysis automatically through code</title><link>http://blogs.msdn.com/b/carlosag/archive/2009/11/18/iis-seo-toolkit-start-new-analysis-automatically-through-code.aspx#10069330</link><pubDate>Wed, 29 Sep 2010 16:11:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10069330</guid><dc:creator>Jim</dc:creator><description>&lt;p&gt;Thanks for your prompt reply. &lt;/p&gt;
&lt;p&gt;I&amp;#39;ve tried adding &amp;#39;WebCrawler.RegisterModule(new SEOW3ValidatorModule());&amp;#39; and other variations immediately prior to the crawler.Start(); in SEOrunner.cs, but when I compile it I get the error &amp;#39;The type or namespace name &amp;#39;SEOW3ValidatorModule&amp;#39; could not be found. &lt;/p&gt;
&lt;p&gt;I then tried adding &amp;#39;using SEOW3Validator;&amp;#39; at the top of the code, but am still getting the same error.&lt;/p&gt;
&lt;p&gt;What am I doing wrong? Thanks again!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10069330" width="1" height="1"&gt;</description></item><item><title>re: IIS SEO Toolkit - Start new analysis automatically through code</title><link>http://blogs.msdn.com/b/carlosag/archive/2009/11/18/iis-seo-toolkit-start-new-analysis-automatically-through-code.aspx#10069068</link><pubDate>Wed, 29 Sep 2010 04:28:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10069068</guid><dc:creator>CarlosAg</dc:creator><description>&lt;p&gt;@Jim , the reason you dont see it run is because it is only registered with the IIS Manager client, however when you consume the APIs directly you need to use the method RegisterModule to add the instance of any custom module to the Crawler, such as the W3C validator module directly. Something like: webCrawler.RegisterModule(new W3CValidatorMOdule());&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10069068" width="1" height="1"&gt;</description></item><item><title>re: IIS SEO Toolkit - Start new analysis automatically through code</title><link>http://blogs.msdn.com/b/carlosag/archive/2009/11/18/iis-seo-toolkit-start-new-analysis-automatically-through-code.aspx#10068706</link><pubDate>Tue, 28 Sep 2010 14:09:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10068706</guid><dc:creator>Jim</dc:creator><description>&lt;p&gt;Thanks very much for this - I have been able to get it to work using your instructions.&lt;/p&gt;
&lt;p&gt;I have also followed your instructions on implementing the W3C validator extension which is also working fine. &lt;/p&gt;
&lt;p&gt;However, when I run the analysis from code as in this example, it is not running the W3C validator checks. Is this because the Managed code API starts the analysis in a different way to the User Interface? Is there any way to get the two to work together, so that I can get an analysis including the extended checks starting from the command line?&lt;/p&gt;
&lt;p&gt;Any pointers would be really appreciated. &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10068706" width="1" height="1"&gt;</description></item><item><title>re: IIS SEO Toolkit - Start new analysis automatically through code</title><link>http://blogs.msdn.com/b/carlosag/archive/2009/11/18/iis-seo-toolkit-start-new-analysis-automatically-through-code.aspx#9959947</link><pubDate>Mon, 08 Feb 2010 20:17:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9959947</guid><dc:creator>Kev</dc:creator><description>&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;If i use this method, what is the best way to read the content of each file? The response and responseStream properties is always null. Do I need to open and close the file each time?&lt;/p&gt;
&lt;p&gt;Thanks for your great posts, it has helped me alot.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9959947" width="1" height="1"&gt;</description></item><item><title>re: IIS SEO Toolkit - Start new analysis automatically through code</title><link>http://blogs.msdn.com/b/carlosag/archive/2009/11/18/iis-seo-toolkit-start-new-analysis-automatically-through-code.aspx#9954699</link><pubDate>Thu, 28 Jan 2010 15:01:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9954699</guid><dc:creator>Christian</dc:creator><description>&lt;p&gt;is the PowerShell automation post still coming?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9954699" width="1" height="1"&gt;</description></item></channel></rss>