<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Window 10 named pipe monitoring - no logs]]></title><description><![CDATA[<p dir="auto">I have installed IO Ninja to monitor the content of named pipes.<br />
It seems to be installed and running fine, registering RX and TX traffic but I get no log output. I tried tinkering with different filters and settings with no success. Any idea what I might be missing?</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1732729520990-91c5d460-9ddf-4c83-a978-378b70d35be9-image.png" alt="91c5d460-9ddf-4c83-a978-378b70d35be9-image.png" class=" img-responsive img-markdown" width="904" height="815" /></p>
]]></description><link>http://64.23.185.212/forum/topic/322/window-10-named-pipe-monitoring-no-logs</link><generator>RSS for Node</generator><lastBuildDate>Thu, 21 May 2026 08:17:32 GMT</lastBuildDate><atom:link href="http://64.23.185.212/forum/topic/322.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 27 Nov 2024 17:53:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Window 10 named pipe monitoring - no logs on Tue, 03 Dec 2024 04:15:07 GMT]]></title><description><![CDATA[<p dir="auto">Apologies for the inconvenience.</p>
<p dir="auto">Please restart the Pipe Monitor session and set the Filter to "None" if you don't need to filter by name. Alternatively, you can set the name wildcard to <code>*</code> (i.e., an asterisk).</p>
<p dir="auto">Tech details:</p>
<p dir="auto">The latest release of IO Ninja contains a regression that results in an exception when setting an empty wildcard as a filter; the log engine remains suspended after this exception, thus resulting in the "empty log" you saw.</p>
<p dir="auto">Here's how to fix it (until the next release takes care of it):</p>
<ol>
<li>Open <code>&lt;ioninja-dir&gt;/scripts/common/log_MonitorFilter.jnc</code> in any text editor</li>
<li>Search for <code>MonitorFilter.setFilter</code></li>
<li>Add the following snippet right before processing the wildcard string:</li>
</ol>
<pre><code class="language-js">switch (filterKind) {
case MonitorFilterKind.FileName:
case MonitorFilterKind.ProcessName:
	// &lt;&lt;&lt;&lt;&lt;&lt;&lt;
	if (!filter) {
		m_filterKind = MonitorFilterKind.None;
		break;
	}
	// &gt;&gt;&gt;&gt;&gt;&gt;&gt;

</code></pre>
<p dir="auto">Save the script and restart the Pipe Monitor session (no need to restart the app).</p>
<p dir="auto">Please let me know if it works for you.</p>
]]></description><link>http://64.23.185.212/forum/post/713</link><guid isPermaLink="true">http://64.23.185.212/forum/post/713</guid><dc:creator><![CDATA[Vladimir]]></dc:creator><pubDate>Tue, 03 Dec 2024 04:15:07 GMT</pubDate></item></channel></rss>