惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Jina AI
Jina AI
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
J
Java Code Geeks
博客园 - 聂微东
B
Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
腾讯CDC
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Azure Blog
Microsoft Azure Blog
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
美团技术团队
博客园 - Franky
Google DeepMind News
Google DeepMind News
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
The Cloudflare Blog

博客园 - Goooder

对于《超级大富翁》的游戏策略讨论 唯真才能永久--读《十年》 怕您麻烦,您的户口我给您转到北京了 给王利芬老师:赢在中国规则失误 文化倒挂开始了 [无奈]从今以后不买尼康相机 我的三十岁的人生观 SaaS模式下的智能手机信息备份及恢复方案的设计与实现 智能手机业务的最新发展趋势 与无线相关(IEEE 802.x)的一组概念 反垃圾邮件的垃圾邮件 多普达838使用简评 贷款三十万,利息十五万--吃人的银行 写在我参与的软件卖出一千五百万份 Microsoft Power Shell (Monad)的独特之处 新学习的两个概念 搜狗拼音输入法的不方便之处 我和蚕的故事 手机学英语口语共享免费版
ExBPA(Microsoft Exchange Server Best Practices Analyzer t...
Goooder · 2006-07-27 · via 博客园 - Goooder

Mark Wilson在他的blog陈述了Exchange Server最佳维护技巧(http://www.markwilson.co.uk/blog/2005/02/exchange-server-best-practice-and.htm)。但我最感兴趣的是他说的ExBPA(Microsoft Exchange Server Best Practices Analyzer tool )的设计原则。

据称,微软碰到的客户支持事件中,只有0.3%的是软件错误而需要打补丁之外,60%的都是配置错误。所以,对于Exchange Server做个检测工具就是必然了,这就是ExBPA的设计初衷了。

在ExBPA中采用的设计原则有:

1. Concentrate on performance, scalability and availability - whilst the ExBPA does examine some security mis-configurations, e.g. open relays or too many administrators, it does not look for the latest patch levels - the Microsoft Baseline Security Analyzer (MBSA) performs that function.

2. Make it easy to run - previous tools were not particularly easy to set up and ExBPA is designed on a 3-click principle (from startup to scan). Don't leave me hanging - i.e. don't just provide a strange message and a link to a Microsoft knowledge base article - provide some useful information in relation to the tool's findings.

3. Keep it up-to-date - ExBPA automatically downloads its web update packs, which are published every two weeks.

4. Work in all environments - ExBPA works from single server Microsoft Small Business Server implementations right through to enterprise Exchange Server deployments.

这个工具用C#实现,采用XML输入输出及XPath(http://www.w3.org/TR/xpath)技术。更多可以从微软网站(http://www.microsoft.com/technet/prodtechnol/exchange/downloads/2003/analyzers/overview.mspx)看到。