windows - 如何安排 IIS SEO 工具包每天运行

标签 windows iis seo scheduling

我已经在 IIS 中安装了 Microsoft SEO Toolkit。 http://www.iis.net/download/seotoolkit

我希望能够安排它每天运行并生成报告。

有人知道怎么做吗?

最佳答案

您可以通过多种方式做到这一点:

1)使用 PowerShell 脚本: h t t p://blogs.iis.net/carlosag/archive/2008/02/10/using-microsoft-web-administration-in-windows-powershell.aspx

PS C:\ > $iis = new-object Microsoft.Web.Administration.ServerManager

PS C:\> $iis.Sites | foreach { $.应用 |其中 { $.ApplicationPoolName -eq 'DefaultAppPool' } | 选择对象路径,@{Name="AnonymousEnabled";表达式 = { $_.GetWebConfiguration().GetSection("system.webServer/security/authentication/anonymousAuthentication").GetAttributeValue("enabled") }} }

2) 您可以设置像这样创建一个小的 C# 程序:

使用系统; 使用 System.IO; 使用 System.Linq; 使用 System.Net; 使用系统线程; 使用 Microsoft.Web.Management.SEO.Crawler;

命名空间 SEORunner { 类程序 {

    static void Main(string[] args) {

        if (args.Length != 1) {
            Console.WriteLine("Please specify the URL.");
            return;
        }

        // Create a URI class
        Uri startUrl = new Uri(args[0]);

        // Run the analysis
        CrawlerReport report = RunAnalysis(startUrl);

        // Run a few queries...
        LogSummary(report);

        LogStatusCodeSummary(report);

        LogBrokenLinks(report);
    }

    private static CrawlerReport RunAnalysis(Uri startUrl) {
        CrawlerSettings settings = new CrawlerSettings(startUrl);
        settings.ExternalLinkCriteria = ExternalLinkCriteria.SameFolderAndDeeper;
        // Generate a unique name
        settings.Name = startUrl.Host + " " + DateTime.Now.ToString("yy-MM-dd hh-mm-ss");

        // Use the same directory as the default used by the UI
        string path = Path.Combine(
            Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments),
            "IIS SEO Reports");

        settings.DirectoryCache = Path.Combine(path, settings.Name);

        // Create a new crawler and start running
        WebCrawler crawler = new WebCrawler(settings);
        crawler.Start();

        Console.WriteLine("Processed - Remaining - Download Size");
        while (crawler.IsRunning) {
            Thread.Sleep(1000);
            Console.WriteLine("{0,9:N0} - {1,9:N0} - {2,9:N2} MB",
                crawler.Report.GetUrlCount(),
                crawler.RemainingUrls,
                crawler.BytesDownloaded / 1048576.0f);
        }

        // Save the report
        crawler.Report.Save(path);

        Console.WriteLine("Crawling complete!!!");

        return crawler.Report;
    }

    private static void LogSummary(CrawlerReport report) {
        Console.WriteLine();
        Console.WriteLine("----------------------------");
        Console.WriteLine(" Overview");
        Console.WriteLine("----------------------------");
        Console.WriteLine("Start URL:  {0}", report.Settings.StartUrl);
        Console.WriteLine("Start Time: {0}", report.Settings.StartTime);
        Console.WriteLine("End Time:   {0}", report.Settings.EndTime);
        Console.WriteLine("URLs:       {0}", report.GetUrlCount());
        Console.WriteLine("Links:      {0}", report.Settings.LinkCount);
        Console.WriteLine("Violations: {0}", report.Settings.ViolationCount);
    }

    private static void LogBrokenLinks(CrawlerReport report) {
        Console.WriteLine();
        Console.WriteLine("----------------------------");
        Console.WriteLine(" Broken links");
        Console.WriteLine("----------------------------");
        foreach (var item in from url in report.GetUrls()
                             where url.StatusCode == HttpStatusCode.NotFound &&
                                   !url.IsExternal
                             orderby url.Url.AbsoluteUri ascending
                             select url) {
            Console.WriteLine(item.Url.AbsoluteUri);
        }
    }

    private static void LogStatusCodeSummary(CrawlerReport report) {
        Console.WriteLine();
        Console.WriteLine("----------------------------");
        Console.WriteLine(" Status Code summary");
        Console.WriteLine("----------------------------");
        foreach (var item in from url in report.GetUrls()
                             group url by url.StatusCode into g
                             orderby g.Key
                             select g) {
            Console.WriteLine("{0,20} - {1,5:N0}", item.Key, item.Count());
        }
    }
}

}

然后配置使用windows scheduler运行它

我们在 http://www.seo-genie.com 使用相同的工具包如果您可以解决这个问题,或者只使用我上面粘贴的代码 + windows sheduler,并且可以在每周婴儿上为您运行 thouse 测试,或者这可能是使用 Power Shell 的一种方式...

关于windows - 如何安排 IIS SEO 工具包每天运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2831199/

相关文章:

seo - 如何确保搜索引擎索引特定版本的网站

c++ - 处理多个文件时,我必须在 COleDropTarget::OnDrop() 中返回哪个值?

windows - 将多个 PNG 文件制作成一个 ICO 文件

string - 为什么子字符串不能与命令行参数一起使用?

html - 用于构建 "template builder"Web 应用程序的语言/库/模块?

iis - Windows 上的 Mercurial 服务器使用 Active Directory 进行身份验证

java - 将 Java/Mysql 应用程序从 Linux 移植到 Windows

c# - IHttpHandler 与 IHttpModule

php - SEO 和 ajax 加载的内容链接

redirect - 使用 301 重定向将内容从 blogspot 移动到自定义博客