<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>NMExperts Wiki &amp; Documentation Rss Feed</title><link>http://nmexperts.codeplex.com/Wiki/View.aspx?title=Home</link><description>NMExperts Wiki Rss Description</description><item><title>Updated Wiki: Filtering with Message Analyzer</title><link>https://nmexperts.codeplex.com/wikipage?title=Filtering with Message Analyzer&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;I want to point out some differences between Message Analyzer and Network Monitor in a short series of blogs. In this first one, let’s discuss filtering. There are some nice shortcuts that make it easier to type in filters and some differences from Network
 Monitor. Our goal with Message Analyzer was to keep the flexibility and power user’s expect of filter creation, while providing more help and shortcuts. So while there are certainly differences with how filters are created, the premise is the same.
&lt;/p&gt;
&lt;h3&gt;Filtering Shortcuts&lt;/h3&gt;
&lt;p&gt;With a better Intellisense still being implemented on our side, there are some discovery issues for these features. However, you can still take advantage these features which I’ve arranged below as a chart. Keep in mind that there is an example in the filter
 library for most of these.
&lt;table border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;Example&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Feature&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;Description&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;TCP.Rst&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Partial Paths&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;TCP.Flags.Rst is the formal full path. But you only have to put the first and last entity name to make a valid, yet more inclusive filter. This might not be as fast as a more precise filter, but the extent of which depends on the filter.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;*port==135&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Wildcards&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;You can also place a wild card before an element to filter any message which matched “port”. In this case UDP and TCP will be included, as well as any entity called port. It’s also important to note that port is a special way to reference both the source
 and destination. Again this is not as precise and performs worse than the example above.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;*address==FF-FF-FF-FF-FF-FF&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Wildcards&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;This is similar to above, but an important point is that what is on the left side of address might not be obvious. The hardware address could come from wireless or Ethernet. An IP address might be via the firewall or NDIS driver. The IPv4 layer doesn’t exist
 in the firewall driver, though there is an IPv4 type address there. Remember that Address is the IPv4 type, but IPv4 is the protocol/module name. This is really important when creating capture filters because IPv4.Address in the firewall will not match.
&lt;/p&gt;
&lt;p&gt;Also important is that the right side can take on any valid literal form. So if you enter an IPv4 address on the right side, we will find those address that match that can return an IPv4 literal type.
&lt;/p&gt;
&lt;p&gt;Again, the address is a special way to reference both the source and destination addresses.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;HTTP.Uri contains “msn” &lt;/p&gt;
&lt;p&gt;TCP contains “Microsoft”&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Contains&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;You can use contains to search a string or all the raw data. You can also search a specific protocol for a string. You can control case sensitivity, but by default it’s case insensitive. For instance ‘TCP contains “bLah” caseSensitive’ would search for “bLah”
 matching case. Look at the library to see other options for encoding types.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;HTTP.Headers[“Host”] == “www.msn.com”&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Maps&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;A big difference in Messages Analyzer is that we created a new type to handle HTTP data. Using a Map is a better data type to describe HTTP and others, but this makes the filtering the syntax different. An advantage is that we can now reference the HTTP
 fields using the exact match of the HTTP field name. Previously we had to remove dashes which could be confused for subtraction. For instance in Network Monitor 3.x, Content-Type was written as HTTP.Response.ContentType. But now you can Type HTTP.Response.Headers[“Content-Type”]
 which is more predictable and consistent. &lt;/p&gt;
&lt;p&gt;On the other hand we group HTTP request and responses as operations. And for an operation we also expose fields which lift some information from the request or response. For example HTTP.ContentType = “jpeg”. Intellisense will make this easier to explore.
&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;Tcp.port != 80 &lt;/p&gt;
&lt;p&gt;SMB.FileName ~= “”&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Existence&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;This is a Dusey J A feature where math and practicality collide. If you’ve used Network Monitor a lot, you’ll know there’s a difference between tcp.port != 80 and !(tcp.port == 80). This mathematical irony seems to tickle the OCD in all of us.
&lt;/p&gt;
&lt;p&gt;See below for more detailed info.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/p&gt;
&lt;h3&gt;Existence Example: TCP.Port != 3389 vs. SMB.FileName ~= “”&lt;/h3&gt;
&lt;p&gt;There are two possible outcomes a user wants. However, a confused user might try and use the same filter for two different situations.
&lt;/p&gt;
&lt;h4&gt;Example 1: Getting Rid of Traffic&lt;/h4&gt;
&lt;p&gt;One example is that you want to get rid of TCP traffic by a port, commonly used to remove noise, like RDP traffic. A user could mistakenly type TCP.Port != 3389, for instance. But as you see below, the result is not correct. With Network Monitor we automatically
 assume you want to include only TCP traffic. Behind the scenes we apply a filter like (TCP &amp;amp;&amp;amp; TCP. Port != 3389).
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600552"&gt;&lt;img title="clip_image002" border="0" alt="clip_image002" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600553" width="644" height="348" style="border-right-width:0px; padding-left:0px; padding-right:0px; display:inline; border-top-width:0px; border-bottom-width:0px; border-left-width:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600554"&gt;&lt;img title="clip_image003" border="0" alt="clip_image003" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600555" width="644" height="348" style="border-right-width:0px; padding-left:0px; padding-right:0px; display:inline; border-top-width:0px; border-bottom-width:0px; border-left-width:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;For Network Monitor, if you wanted to get rid of traffic, you type “!(tcp.Port == 3389)”. And of course this could be confusing since these two filters seem mathematically equivalent.
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600556"&gt;&lt;img title="clip_image005" border="0" alt="clip_image005" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600557" width="644" height="258" style="border-right-width:0px; padding-left:0px; padding-right:0px; display:inline; border-top-width:0px; border-bottom-width:0px; border-left-width:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;With Message Analyzer, the two statements are equivalent. And we no longer assume you want to look for traffic where the TCP.Port fields exists. Tcp.port != 3389 is the same as !(tcp.port == 3389).
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600558"&gt;&lt;img title="clip_image006" border="0" alt="clip_image006" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600559" width="644" height="351" style="border-right-width:0px; padding-left:0px; padding-right:0px; display:inline; border-top-width:0px; border-bottom-width:0px; border-left-width:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;h4&gt;Example 2: Displaying Data where the Field Exists&lt;/h4&gt;
&lt;p&gt;For this example I want to find messages where the SMB File Name is not blank. With Network Monitor, the default action is to only return those fields with the FileName field already there. So something like Property.SMBFileName != “”, returns what you want.
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600560"&gt;&lt;img title="clip_image007" border="0" alt="clip_image007" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600561" width="644" height="364" style="border-right-width:0px; padding-left:0px; padding-right:0px; display:inline; border-top-width:0px; border-bottom-width:0px; border-left-width:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;However with Message Analyzer, we don’t assume to check for existence and the result is not exactly what we want. In this example you see we return other messages like the TCP session setup. The filter is more explicit without the check for existence and
 since TCP doesn’t even have a matching entity, the message matches the filter because there it is true that the smb2.filename is not blank.
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600562"&gt;&lt;img title="clip_image008" border="0" alt="clip_image008" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600563" width="644" height="455" style="border-right-width:0px; padding-left:0px; padding-right:0px; display:inline; border-top-width:0px; border-bottom-width:0px; border-left-width:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Now, we use a new operator, “~=”, which will additionally check for existence. You can see below that we’ve limited the capture to SMB traffic, because in only these messages does the filename entity exists.
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600564"&gt;&lt;img title="clip_image009" border="0" alt="clip_image009" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600565" width="644" height="374" style="border-right-width:0px; padding-left:0px; padding-right:0px; display:inline; border-top-width:0px; border-bottom-width:0px; border-left-width:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Rather than continuing to violate mathematical laws, and to reduce our OCD medicine intake, we’ve added this new operator, ~=. This includes the check for existence and doesn’t return messages which don’t have the field in the first place. We believe this
 more explicit notation will provide less confusion and more clarity moving forward.
&lt;/p&gt;
&lt;h3&gt;Right Click Add as Filter &lt;/h3&gt;
&lt;p&gt;We understand this feature doesn’t work perfectly now and we are working to implement it completely. In future versions, the experience for right clicking something in the UI and adding as a filter should be improved. But still, even in this current implementation,
 it is a helpful way to learn how to specify entities to filter on. &lt;/p&gt;
&lt;h3&gt;More to Come&lt;/h3&gt;
&lt;p&gt;There are even more complex things you can do with the filtering language that I will leave to a later post. Hopefully with these small tips, your filtering experience will be better. Please remember to provide us any feedback on our
&lt;a href="https://connect.microsoft.com/site216"&gt;Connect site&lt;/a&gt; where we are hosting the Message Analyzer Beta.
&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Jan 2013 19:53:21 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Filtering with Message Analyzer 20130110075321P</guid></item><item><title>Updated Wiki: Filtering with Message Analyzer</title><link>https://nmexperts.codeplex.com/wikipage?title=Filtering with Message Analyzer&amp;version=1</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;I want to point out some differences between Message Analyzer and Network Monitor in a short series of blogs. In this first one, let’s discuss filtering. There are some nice shortcuts that make it easier to type in filters and some differences from Network
 Monitor. Our goal with Message Analyzer was to keep the flexibility and power user’s expect of filter creation, while providing more help and shortcuts. So while there are certainly differences with how filters are created, the premise is the same.
&lt;/p&gt;
&lt;h3&gt;Filtering Shortcuts&lt;/h3&gt;
&lt;p&gt;With a better Intellisense still being implemented on our side, there are some discovery issues for these features. However, you can still take advantage these features which I’ve arranged below as a chart. Keep in mind that there is an example in the filter
 library for most of these.
&lt;table border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;Example&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Feature&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;Description&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;TCP.Rst&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Partial Paths&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;TCP.Flags.Rst is the formal full path. But you only have to put the first and last entity name to make a valid, yet more inclusive filter. This might not be as fast as a more precise filter, but the extent of which depends on the filter.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;*port==135&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Wildcards&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;You can also place a wild card before an element to filter any message which matched “port”. In this case UDP and TCP will be included, as well as any entity called port. It’s also important to note that port is a special way to reference both the source
 and destination. Again this is not as precise and performs worse than the example above.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;*address==FF-FF-FF-FF-FF-FF&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Wildcards&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;This is similar to above, but an important point is that what is on the left side of address might not be obvious. The hardware address could come from wireless or Ethernet. An IP address might be via the firewall or NDIS driver. The IPv4 layer doesn’t exist
 in the firewall driver, though there is an IPv4 type address there. Remember that Address is the IPv4 type, but IPv4 is the protocol/module name. This is really important when creating capture filters because IPv4.Address in the firewall will not match.
&lt;/p&gt;
&lt;p&gt;Also important is that the right side can take on any valid literal form. So if you enter an IPv4 address on the right side, we will find those address that match that can return an IPv4 literal type.
&lt;/p&gt;
&lt;p&gt;Again, the address is a special way to reference both the source and destination addresses.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;HTTP.Uri contains “msn” &lt;/p&gt;
&lt;p&gt;TCP contains “Microsoft”&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Contains&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;You can use contains to search a string or all the raw data. You can also search a specific protocol for a string. You can control case sensitivity, but by default it’s case insensitive. For instance ‘TCP contains “bLah” caseSensitive’ would search for “bLah”
 matching case. Look at the library to see other options for encoding types.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;HTTP.Headers[“Host”] == “www.msn.com”&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Maps&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;A big difference in Messages Analyzer is that we created a new type to handle HTTP data. Using a Map is a better data type to describe HTTP and others, but this makes the filtering the syntax different. An advantage is that we can now reference the HTTP
 fields using the exact match of the HTTP field name. Previously we had to remove dashes which could be confused for subtraction. For instance in Network Monitor 3.x, Content-Type was written as HTTP.Response.ContentType. But now you can Type HTTP.Response.Headers[“Content-Type”]
 which is more predictable and consistent. &lt;/p&gt;
&lt;p&gt;On the other hand we group HTTP request and responses as operations. And for an operation we also expose fields which lift some information from the request or response. For example HTTP.ContentType = “jpeg”. Intellisense will make this easier to explore.
&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;Tcp.port != 80 &lt;/p&gt;
&lt;p&gt;SMB.FileName ~= “”&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p&gt;Existence&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="343"&gt;
&lt;p&gt;This is a Dusey J A feature where math and practicality collide. If you’ve used Network Monitor a lot, you’ll know there’s a difference between tcp.port != 80 and !(tcp.port == 80). This mathematical irony seems to tickle the OCD in all of us.
&lt;/p&gt;
&lt;p&gt;See below for more detailed info.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/p&gt;
&lt;h3&gt;Existence Example: TCP.Port != 3389 vs. SMB.FileName ~= “”&lt;/h3&gt;
&lt;p&gt;There are two possible outcomes a user wants. However, a confused user might try and use the same filter for two different situations.
&lt;/p&gt;
&lt;h4&gt;Example 1: Getting Rid of Traffic&lt;/h4&gt;
&lt;p&gt;One example is that you want to get rid of TCP traffic by a port, commonly used to remove noise, like RDP traffic. A user could mistakenly type TCP.Port != 3389, for instance. But as you see below, the result is not correct. With Network Monitor we automatically
 assume you want to include only TCP traffic. Behind the scenes we apply a filter like (TCP &amp;amp;&amp;amp; TCP. Port != 3389).
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600552"&gt;&lt;img title="clip_image002" border="0" alt="clip_image002" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600553" width="644" height="348" style="border-bottom:0px; border-left:0px; padding-left:0px; padding-right:0px; display:inline; border-top:0px; border-right:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600554"&gt;&lt;img title="clip_image003" border="0" alt="clip_image003" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600555" width="644" height="348" style="border-bottom:0px; border-left:0px; padding-left:0px; padding-right:0px; display:inline; border-top:0px; border-right:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;For Network Monitor, if you wanted to get rid of traffic, you type “!(tcp.Port == 3389)”. And of course this could be confusing since these two filters seem mathematically equivalent.
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600556"&gt;&lt;img title="clip_image005" border="0" alt="clip_image005" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600557" width="644" height="258" style="border-bottom:0px; border-left:0px; padding-left:0px; padding-right:0px; display:inline; border-top:0px; border-right:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;With Message Analyzer, the two statements are equivalent. And we no longer assume you want to look for traffic where the TCP.Port fields exists. Tcp.port != 3389 is the same as !(tcp.port == 3389).
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600558"&gt;&lt;img title="clip_image006" border="0" alt="clip_image006" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600559" width="644" height="351" style="border-bottom:0px; border-left:0px; padding-left:0px; padding-right:0px; display:inline; border-top:0px; border-right:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;h4&gt;Example 2: Displaying Data where the Field Exists&lt;/h4&gt;
&lt;p&gt;For this example I want to find messages where the SMB File Name is not blank. With Network Monitor, the default action is to only return those fields with the FileName field already there. So something like Property.SMBFileName != “”, returns what you want.
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600560"&gt;&lt;img title="clip_image007" border="0" alt="clip_image007" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600561" width="644" height="364" style="border-bottom:0px; border-left:0px; padding-left:0px; padding-right:0px; display:inline; border-top:0px; border-right:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;However with Message Analyzer, we don’t assume to check for existence and the result is not exactly what we want. In this example you see we return other messages like the TCP session setup. The filter is more explicit without the check for existence and
 since TCP doesn’t even have a matching entity, the message matches the filter because there it is true that the smb2.filename is not blank.
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600562"&gt;&lt;img title="clip_image008" border="0" alt="clip_image008" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600563" width="644" height="455" style="border-bottom:0px; border-left:0px; padding-left:0px; padding-right:0px; display:inline; border-top:0px; border-right:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Now, we use a new operator, “~=”, which will additionally check for existence. You can see below that we’ve limited the capture to SMB traffic, because in only these messages does the filename entity exists.
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600564"&gt;&lt;img title="clip_image009" border="0" alt="clip_image009" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=600565" width="644" height="374" style="border-bottom:0px; border-left:0px; padding-left:0px; padding-right:0px; display:inline; border-top:0px; border-right:0px; padding-top:0px"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Rather than continuing to violate mathematical laws, and to reduce our OCD medicine intake, we’ve added this new operator, ~=. This includes the check for existence and doesn’t return messages which don’t have the field in the first place. We believe this
 more explicit notation will provide less confusion and more clarity moving forward.
&lt;/p&gt;
&lt;h3&gt;Right Click Add as Filter &lt;/h3&gt;
&lt;p&gt;We understand this feature doesn’t work perfectly now and we are working to implement it completely. In future versions, the experience for right clicking something in the UI and adding as a filter should be improved. But still, even in this current implementation,
 it is a helpful way to learn how to specify entities to filter on. &lt;/p&gt;
&lt;h3&gt;More to Come&lt;/h3&gt;
&lt;p&gt;There are even more complex things you can do with the filtering language that I will leave to a later post. Hopefully with these small tips, your filtering experience will be better. Please remember to provide us any feedback on our
&lt;a href="https://connect.microsoft.com/site216"&gt;Connect site&lt;/a&gt; where we are hosting the Message Analyzer Beta.
&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Jan 2013 19:31:02 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Filtering with Message Analyzer 20130110073102P</guid></item><item><title>Updated Wiki: Home</title><link>https://nmexperts.codeplex.com/wikipage?version=27</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br&gt;
Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br&gt;
&lt;br&gt;
This page is points you to these useful “Experts” for your data analysis needs within Network Monitor. Also provided here is the Expert SDK. More information on Experts can be found
&lt;a href="/NMExperts/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158"&gt;here&lt;/a&gt;. To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the
 new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br&gt;
&lt;br&gt;
See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465"&gt;
Downloads&lt;/a&gt; tab for more information on the Expert SDK. This SDK contains examples as well as reusable code for parsing the command line and building expert MSIs.&lt;br&gt;
&lt;h1&gt;News&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;03/03/2011 - NMTopProtocols Installer Uploaded &lt;/li&gt;&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now) &lt;/li&gt;&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts"&gt;
Outercurve Foundation&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;03/08/2010 - NmDecrypt Expert Released &lt;/li&gt;&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/"&gt;NetWiz&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below. &lt;/li&gt;&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="https://nmexperts.codeplex.com/releases/view/27988"&gt;
here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;&amp;nbsp;&lt;/h1&gt;
&lt;h1 align="center"&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=526921"&gt;&lt;img title="image" border="0" alt="image" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=526922" width="244" height="61" style="border-bottom:0px; border-left:0px; margin:0px; padding-left:0px; padding-right:0px; display:inline; border-top:0px; border-right:0px; padding-top:0px"&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/"&gt;NmDecrypt&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/"&gt;Top Users&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/"&gt;Top Protocols&lt;/a&gt; Lets you determine distribution of protocols.
&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Other Community Experts: &lt;/h1&gt;
These experts are not associated with the Outercurve Foundation. But in the spirit of increasing our community we've included links to some other experts.&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer"&gt;TCP Analyzer&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch"&gt;Simple Search&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Related Programs&lt;/h2&gt;
The following programs are useful tools which use the Network Monitor API, but don't integrate with the Experts Menu.&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://netwiz.codeplex.com/"&gt;NetWiz&lt;/a&gt; Provides a wizard type interface to build and execute NMCap command lines.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=119f3477-dced-41e3-a0e7-d8b5cae893a3&amp;displaylang=en"&gt;VRTA&lt;/a&gt; The Visual Round Trip Analyzer tool helps web developers and testers visualize the download of their page, identify best practices
 and changes that improve web performance.&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here.
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Wed, 07 Nov 2012 16:25:30 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20121107042530P</guid></item><item><title>Updated Wiki: Home</title><link>https://nmexperts.codeplex.com/wikipage?version=26</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br&gt;
Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br&gt;
&lt;br&gt;
This page is points you to these useful “Experts” for your data analysis needs within Network Monitor. Also provided here is the Expert SDK. More information on Experts can be found
&lt;a href="/NMExperts/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158"&gt;here&lt;/a&gt;. To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the
 new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br&gt;
&lt;br&gt;
See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465"&gt;
Downloads&lt;/a&gt; tab for more information on the Expert SDK. This SDK contains examples as well as reusable code for parsing the command line and building expert MSIs.&lt;br&gt;
&lt;h1&gt;News&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;03/03/2011 - NMTopProtocols Installer Uploaded &lt;/li&gt;&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now) &lt;/li&gt;&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts"&gt;
Outercurve Foundation&lt;/a&gt;. &lt;/li&gt;&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=526918"&gt;&lt;img title="image" border="0" alt="image" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=nmexperts&amp;DownloadId=526919" width="244" height="61" style="border-bottom:0px; border-left:0px; padding-left:0px; padding-right:0px; display:inline; border-top:0px; border-right:0px; padding-top:0px"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released &lt;/li&gt;&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/"&gt;NetWiz&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below. &lt;/li&gt;&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="https://nmexperts.codeplex.com/releases/view/27988"&gt;
here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/"&gt;NmDecrypt&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/"&gt;Top Users&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/"&gt;Top Protocols&lt;/a&gt; Lets you determine distribution of protocols.
&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Other Community Experts: &lt;/h1&gt;
These experts are not associated with the Outercurve Foundation. But in the spirit of increasing our community we've included links to some other experts.&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer"&gt;TCP Analyzer&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch"&gt;Simple Search&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Related Programs&lt;/h2&gt;
The following programs are useful tools which use the Network Monitor API, but don't integrate with the Experts Menu.&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://netwiz.codeplex.com/"&gt;NetWiz&lt;/a&gt; Provides a wizard type interface to build and execute NMCap command lines.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=119f3477-dced-41e3-a0e7-d8b5cae893a3&amp;displaylang=en"&gt;VRTA&lt;/a&gt; The Visual Round Trip Analyzer tool helps web developers and testers visualize the download of their page, identify best practices
 and changes that improve web performance.&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here.
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Wed, 07 Nov 2012 16:22:58 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20121107042258P</guid></item><item><title>Updated Wiki: Temporary Post Used For Theme Detection (686f5c64-7334-440a-9b3e-686f46859c9c - 3bfe001a-32de-4114-a6b4-4005b770f6d7)</title><link>https://nmexperts.codeplex.com/wikipage?title=Temporary Post Used For Theme Detection (686f5c64-7334-440a-9b3e-686f46859c9c - 3bfe001a-32de-4114-a6b4-4005b770f6d7)&amp;version=1</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;This is a temporary post that was not deleted. Please delete this manually. (762d10ce-ab96-4b4f-b253-6b130949ed21 - 3bfe001a-32de-4114-a6b4-4005b770f6d7)&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Wed, 07 Nov 2012 14:56:16 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Temporary Post Used For Theme Detection (686f5c64-7334-440a-9b3e-686f46859c9c - 3bfe001a-32de-4114-a6b4-4005b770f6d7) 20121107025616P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=25</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.  This SDK contains examples as well as reusable code for parsing the command line and building expert MSIs.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;03/03/2011 - NMTopProtocols Installer Uploaded&lt;/li&gt;
&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now)&lt;/li&gt;
&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols. &lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;These experts are not associated with the Outercurve Foundation.  But in the spirit of increasing our community we&amp;#39;ve included links to some other experts.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Related Programs&lt;/h2&gt;The following programs are useful tools which use the Network Monitor API, but don&amp;#39;t integrate with the Experts Menu.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Provides a wizard type interface to build and execute NMCap command lines.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=119f3477-dced-41e3-a0e7-d8b5cae893a3&amp;amp;displaylang=en" class="externalLink"&gt;VRTA&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; The Visual Round Trip Analyzer tool helps web developers and testers visualize the download of their page, identify best practices and changes that improve web performance.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MichaelHawker</author><pubDate>Fri, 06 May 2011 17:57:00 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110506055700P</guid></item><item><title>Updated Wiki: Expert Ideas</title><link>http://nmexperts.codeplex.com/wikipage?title=Expert Ideas&amp;version=2</link><description>&lt;div class="wikidoc"&gt;This page contains a list of ideas for possible Expert analysis tools.  &lt;br /&gt;&lt;br /&gt;The Network Monitor API is written in C, but provides a basic C# wrapper.  Therefore most Experts are written in C or C#.  Even in C# though, having a knowledge of C pointers is useful when developing experts; however, with the current Experts available there are plenty of available examples of using most existing API functions.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Response Time Checker (Across Stack)
&lt;ul&gt;&lt;li&gt;Difficulty: Easy (raw data), Medium (graphical display)&lt;/li&gt;
&lt;li&gt;Analyze response times for a user specified protocol layer.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Network Sequence Diagrams
&lt;ul&gt;&lt;li&gt;Difficulty: Medium&lt;/li&gt;
&lt;li&gt;Graphical display of Network Messages passing between two or more machines for a user specified protocol layer and/or across layers.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Comparison of Traces
&lt;ul&gt;&lt;li&gt;Difficulty: Hard&lt;/li&gt;
&lt;li&gt;Graphical comparison of two Network Traces.  Looking for common or differentiating patterns in network data, messages, and intent.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MichaelHawker</author><pubDate>Fri, 11 Mar 2011 23:35:18 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Expert Ideas 20110311113518P</guid></item><item><title>Updated Wiki: Expert Ideas</title><link>http://nmexperts.codeplex.com/wikipage?title=Expert Ideas&amp;version=1</link><description>&lt;div class="wikidoc"&gt;This page contains a list of ideas for possible Expert analysis tools.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Network Sequence Diagrams
&lt;ul&gt;&lt;li&gt;Graphical display of Network Messages passing between two or more machines for a user specified protocol layer and/or across layers.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Comparison of Traces
&lt;ul&gt;&lt;li&gt;Graphical comparison of two Network Traces.  Looking for common or differentiating patterns in network data, messages, and intent.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Response Time Checker (Across Stack)
&lt;ul&gt;&lt;li&gt;Analyze response times for a user specified protocol layer.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MichaelHawker</author><pubDate>Fri, 11 Mar 2011 17:07:01 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Expert Ideas 20110311050701P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=24</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.  This SDK contains examples as well as reusable code for parsing the command line and building expert MSIs.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;03/03/2011 - NMTopProtocols Installer Uploaded&lt;/li&gt;
&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now)&lt;/li&gt;
&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols. &lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;These experts are not associated with the Outercurve Foundation.  But in the spirit of increasing our community we&amp;#39;ve included links to some other experts.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Provides a wizard type interface to build and execute NMCap command lines.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MichaelHawker</author><pubDate>Fri, 04 Mar 2011 17:03:27 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110304050327P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=23</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.  This SDK contains examples as well as reusable code for parsing the command line and building expert MSIs.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now)&lt;/li&gt;
&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols. (Code only, release is not availalbe yet)&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;These experts are not associated with the Outercurve Foundation.  But in the spirit of increasing our community we&amp;#39;ve included links to some other experts.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Provides a wizard type interface to build and execute NMCap command lines.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Feb 2011 21:54:23 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110210095423P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=22</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now)&lt;/li&gt;
&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols. (Code only, release is not availalbe yet)&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;These experts are not associated with the Outercurve Foundation.  But in the spirit of increasing our community we&amp;#39;ve included links to some other experts.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Provides a wizard type interface to build and execute NMCap command lines.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Feb 2011 21:49:21 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110210094921P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=21</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now)&lt;/li&gt;
&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols. (Code only, release is not availalbe yet)&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;These experts are not associated with the Outercurve Foundation.  But in the spirit of increasing our community we&amp;#39;ve included links to some other experts.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Provides a wizard type interface to build and execute NMCap command lines.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Feb 2011 21:48:44 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110210094844P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=20</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now)&lt;/li&gt;
&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols. (Code only, release is not availalbe yet)&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;These experts are not associated with the Outercurve Foundation.  But in the spirit of increasing our community we&amp;#39;ve included links to some other experts.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWize&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Provides a wizard type interface to build and execute NMCap command lines.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Feb 2011 21:48:30 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110210094830P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=19</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now)&lt;/li&gt;
&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols. (Code only, release is not availalbe yet)&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;These experts are not associated with the Outercurve Foundation.  But in the spirit of increasing our community we&amp;#39;ve included links to some other experts.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Feb 2011 20:05:37 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110210080537P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=18</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;02/09/2011 - NMTopProtocols Released (Code only right now)&lt;/li&gt;
&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols. (Code only, release is not availalbe yet)&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Feb 2011 19:46:25 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110210074625P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=17</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols. (Code only, release is not availalbe yet)&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Feb 2011 19:44:32 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110210074432P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=16</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts in the Outercurve Foundation: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopprotocols.codeplex.com/" class="externalLink"&gt;Top Protocols&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine distribution of protocols.&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Thu, 10 Feb 2011 19:44:02 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110210074402P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=15</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;02/09/2011 - Experts Moved to the &lt;a href="http://www.outercurve.org/Galleries/SystemsInfrastructureandIntegration/NetworkMonitorExperts" class="externalLink"&gt;Outercurve Foundation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts from Network Monitor Team: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>PaulLong</author><pubDate>Wed, 09 Feb 2011 17:44:33 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110209054433P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/wikipage?version=14</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/wikipage?title=Expert%20Information&amp;referringTitle=Home"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;03/08/2010 - NmDecrypt Expert Released&lt;/li&gt;
&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/releases/view/27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts from Network Monitor Team: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nmdecrypt.codeplex.com/" class="externalLink"&gt;NmDecrypt&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; When given a trace with encrypted frames, a security certificate, and a passkey will create a new trace with decrypted frames added inline.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MichaelHawker</author><pubDate>Mon, 08 Mar 2010 19:53:41 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100308075341P</guid></item><item><title>Updated Wiki: Home</title><link>http://nmexperts.codeplex.com/Wiki/View.aspx?title=Home&amp;version=13</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Network Monitor 3.3 introduces the Experts menu. This feature allows you to run external analysis tools on an open capture file.&lt;br /&gt;&lt;br /&gt;This page is points you to these useful &amp;#8220;Experts&amp;#8221; for your data analysis needs within Network Monitor.  Also provided here is the Expert SDK.  More information on Experts can be found &lt;a href="http://nmexperts.codeplex.com/Wiki/View.aspx?title=Expert%20Information"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Experts can only be invoked from Network Monitor 3.3 Beta and later versions. To install the latest version of Network Monitor please click &lt;a href="http://go.microsoft.com/fwlink/?LinkID=103158" class="externalLink"&gt;here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  To install an Expert, download the appropriate MSI for your platform from one of the following Expert Download pages. Then, on any new capture you open with Network Monitor, you will see the new Expert available to run on your capture. Experts should also provide specific help on their usage from within the Experts menu.&lt;br /&gt;&lt;br /&gt;See our &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26465" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tab for more information on the Expert SDK.&lt;br /&gt;
&lt;h1&gt;News&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;08/13/2009 - Checkout the NMCap tool &lt;a href="http://netwiz.codeplex.com/" class="externalLink"&gt;NetWiz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;06/22/2009 - MSR releases TCP Analyzer, added link below.&lt;/li&gt;
&lt;li&gt;05/28/2009 - Released Network Monitor Help C Examples &lt;a href="http://nmexperts.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27988"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Available Experts from Network Monitor Team: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://code.msdn.microsoft.com/NmSimpleSearch" class="externalLink"&gt;Simple Search&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you search frames and comments for raw ASCII text case-insensitively or with regular expressions.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://nmtopusers.codeplex.com/" class="externalLink"&gt;Top Users&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; Lets you determine the heaviest users of network bandwidth.&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Other Community Experts: &lt;/h1&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://research.microsoft.com/tcpanalyzer" class="externalLink"&gt;TCP Analyzer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; This tool analyzes network traces of Transmission Control Protocol (TCP) connections.&lt;/li&gt;
&lt;li&gt;If you have an expert which you think has wide appeal, please feel free to contact us, and we can talk about giving you a link here. &lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>MichaelHawker</author><pubDate>Tue, 18 Aug 2009 18:51:14 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090818065114P</guid></item></channel></rss>