<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Syncio Blog - Server2008</title>
    <link>http://sync-io.net/go/blog/</link>
    <description>fixitchris@twitter</description>
    <language>en-us</language>
    <copyright>Chris Misztur</copyright>
    <lastBuildDate>Wed, 16 Jul 2008 15:21:58 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.0.7226.0</generator>
    <managingEditor>chris@sync-io.net</managingEditor>
    <webMaster>chris@sync-io.net</webMaster>
    <item>
      <trackback:ping>http://sync-io.net/go/blog/Trackback.aspx?guid=d5a63229-e712-42ec-a294-770972c12b7b</trackback:ping>
      <pingback:server>http://sync-io.net/go/blog/pingback.aspx</pingback:server>
      <pingback:target>http://sync-io.net/go/blog/PermaLink,guid,d5a63229-e712-42ec-a294-770972c12b7b.aspx</pingback:target>
      <dc:creator>Chris</dc:creator>
      <wfw:comment>http://sync-io.net/go/blog/CommentView,guid,d5a63229-e712-42ec-a294-770972c12b7b.aspx</wfw:comment>
      <wfw:commentRss>http://sync-io.net/go/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=d5a63229-e712-42ec-a294-770972c12b7b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Otto's recent post on <a href="http://blogs.technet.com/otto/archive/2007/11/09/find-the-event-that-triggered-your-task.aspx">event
log triggers</a> explains how to: start a program, send an email or show a message
on the occurence of an event in the Event Log.  This is a great step forward,
however, some might feel that it is not enough to deploy a large scale logging and
notification environment with a focus on autonomy. 
</p>
        <p>
The alternative is to develop a piece of code that will subscribe to the <strong>__InstanceCreationEvent</strong> of
the <strong>Forwarded Events</strong> log.  The obstacle to using the existing <strong>System.Diagnostics.Eventlog</strong> class
is that the class does not interface with the <a href="http://msdn.microsoft.com/en-us/library/aa385225(VS.85).aspx">channeled
structure of the new Event Log</a> in Vista/2008.  (<em>The Forwarded Event log
is not visible to Eventlog.GetEventLogs() because it is a channel.</em>)  
</p>
        <p>
The following steps rectify this shortcoming:
</p>
        <address>1.   Create an overlapping ForwardedEvents classic log.
</address>
        <address>
          <font size="2">      <font face="Courier New">EventLog.CreateEventSource("ForwardedEvents",
"ForwardedEvents")</font></font>
        </address>
        <address>
          <font face="Courier New">
          </font> 
</address>
        <address>2.   Export and Remove ForwardedEvents channel from registry.
</address>
        <address>      <font face="Courier New">HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\ForwardedEvents</font></address>
        <address> 
</address>
        <address>3.   Recreate the Source Initiated subscription on the server.   
</address>
        <address> 
</address>
        <address>4.   Restart the Windows Event Collector service on the server.
</address>
        <address> 
</address>
        <address>5.   Restart the WINRM service on the client.
</address>
        <address> 
</address>
        <p>
          <font size="2">If everything worked, you should see incoming events in the <strong>ForwardedEvents</strong> log. 
Notice that the log name does not contain a space anymore.  This was done to
match the full name of our new event log to that of the removed channel.</font>
        </p>
        <p>
          <font size="2">
            <strong>ForwardedEvents</strong> log will now be part of the <strong>Eventlog.GetEventLogs()</strong> array. 
You can deploy a <strong>ManagementEventWatcher</strong> to successfully intercept,
parse and take action on incoming events.
</font>
        </p>
        <font color="#a31515" size="2">
          <font color="#a31515" size="2">
          </font>
        </font>
        <img width="0" height="0" src="http://sync-io.net/go/blog/aggbug.ashx?id=d5a63229-e712-42ec-a294-770972c12b7b" />
      </body>
      <title>EventCollector: Intercepting the Forwarded Events log with System.Diagnostics.Eventlog class (Post 2)</title>
      <guid isPermaLink="false">http://sync-io.net/go/blog/PermaLink,guid,d5a63229-e712-42ec-a294-770972c12b7b.aspx</guid>
      <link>http://sync-io.net/go/blog/2008/07/16/EventCollectorInterceptingTheForwardedEventsLogWithSystemDiagnosticsEventlogClassPost2.aspx</link>
      <pubDate>Wed, 16 Jul 2008 15:21:58 GMT</pubDate>
      <description>&lt;p&gt;
Otto's recent post on &lt;a href="http://blogs.technet.com/otto/archive/2007/11/09/find-the-event-that-triggered-your-task.aspx"&gt;event
log triggers&lt;/a&gt;&amp;nbsp;explains how to: start a program, send an email or show a message
on the occurence of an event in the Event Log.&amp;nbsp; This is a great step forward,
however, some might feel that it is not enough to deploy a large scale logging and
notification environment with a&amp;nbsp;focus on autonomy.&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
The alternative is to develop a piece of code that will subscribe to the &lt;strong&gt;__InstanceCreationEvent&lt;/strong&gt; of
the &lt;strong&gt;Forwarded Events&lt;/strong&gt; log.&amp;nbsp; The obstacle to using the existing &lt;strong&gt;System.Diagnostics.Eventlog&lt;/strong&gt; class
is that the class does not interface with the &lt;a href="http://msdn.microsoft.com/en-us/library/aa385225(VS.85).aspx"&gt;channeled
structure of the new Event Log&lt;/a&gt; in Vista/2008.&amp;nbsp; (&lt;em&gt;The Forwarded Event log
is not visible to Eventlog.GetEventLogs() because it is a channel.&lt;/em&gt;)&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
The following steps rectify this shortcoming:
&lt;/p&gt;
&lt;address&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp;Create an overlapping ForwardedEvents classic log.
&lt;/address&gt;
&lt;address&gt;&lt;font size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;font face="Courier New"&gt;EventLog.CreateEventSource("ForwardedEvents",
"ForwardedEvents")&lt;/font&gt;&lt;/font&gt;
&lt;/address&gt;
&lt;address&gt;&lt;font face="Courier New"&gt;&lt;/font&gt;&amp;nbsp;
&lt;/address&gt;
&lt;address&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp;Export and Remove ForwardedEvents channel from registry.
&lt;/address&gt;
&lt;address&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;font face="Courier New"&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\ForwardedEvents&lt;/font&gt;
&lt;/address&gt;
&lt;address&gt;&amp;nbsp;
&lt;/address&gt;
&lt;address&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp;Recreate the Source Initiated subscription on the server.&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/address&gt;
&lt;address&gt;&amp;nbsp;
&lt;/address&gt;
&lt;address&gt;4.&amp;nbsp;&amp;nbsp;&amp;nbsp;Restart the Windows Event Collector service on the server.
&lt;/address&gt;
&lt;address&gt;&amp;nbsp;
&lt;/address&gt;
&lt;address&gt;5.&amp;nbsp;&amp;nbsp;&amp;nbsp;Restart the WINRM service on the client.
&lt;/address&gt;
&lt;address&gt;&amp;nbsp;
&lt;/address&gt;
&lt;p&gt;
&lt;font size=2&gt;If everything worked, you should see incoming events in the &lt;strong&gt;ForwardedEvents&lt;/strong&gt; log.&amp;nbsp;
Notice that the log name does not contain a space anymore.&amp;nbsp; This was done to
match the full name of our new event log to that of the removed channel.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=2&gt;&lt;strong&gt;ForwardedEvents&lt;/strong&gt; log will now be part of the&amp;nbsp;&lt;strong&gt;Eventlog.GetEventLogs()&lt;/strong&gt; array.&amp;nbsp;
You can deploy a &lt;strong&gt;ManagementEventWatcher&lt;/strong&gt; to successfully intercept,
parse and take action on incoming events.
&lt;/p&gt;
&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;&lt;/font&gt;&lt;/font&gt;&lt;img width="0" height="0" src="http://sync-io.net/go/blog/aggbug.ashx?id=d5a63229-e712-42ec-a294-770972c12b7b" /&gt;</description>
      <comments>http://sync-io.net/go/blog/CommentView,guid,d5a63229-e712-42ec-a294-770972c12b7b.aspx</comments>
      <category>Logging</category>
      <category>Server2008</category>
      <category>VB.NET</category>
    </item>
    <item>
      <trackback:ping>http://sync-io.net/go/blog/Trackback.aspx?guid=3a6627d1-946a-4c8a-b786-f3735703e32b</trackback:ping>
      <pingback:server>http://sync-io.net/go/blog/pingback.aspx</pingback:server>
      <pingback:target>http://sync-io.net/go/blog/PermaLink,guid,3a6627d1-946a-4c8a-b786-f3735703e32b.aspx</pingback:target>
      <dc:creator>Chris</dc:creator>
      <wfw:comment>http://sync-io.net/go/blog/CommentView,guid,3a6627d1-946a-4c8a-b786-f3735703e32b.aspx</wfw:comment>
      <wfw:commentRss>http://sync-io.net/go/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=3a6627d1-946a-4c8a-b786-f3735703e32b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <font size="3">Setting up a Collector Initiated Subscription:</font>
        </p>
        <p>
1. <a href="http://www.microsoft.com/downloads/details.aspx?familyid=845289ca-16cc-4c73-8934-dd46b5ed1d33&amp;displaylang=en">Download</a> and
install <strong>WS-Management</strong>/<strong>WINRM</strong> on client <u>and</u> collector
computers.  Configure <strong>WINRM</strong> using command "<strong>winrm quickconfig</strong>".  <strong>Event
Viewer</strong> will be appended with a <strong>Microsoft-Windows-Forwarding/Operational</strong> log.
</p>
        <p>
2. Configure <strong>WECUTIL</strong> on collector computer using command "<strong>WECutil
QC</strong>".
</p>
        <p>
3. Import subscription using command '<strong>WECUTIL cs <a href="http://sync-io.net:83/content/binary/sub_CI_Pull0.xml">sub_CI_Pull0.xml</a></strong>'
on the collector computer.
</p>
        <p>
          <u>NOTE:</u> Modify <strong>sub_CI_Pull0.xml</strong> before importing it.  I
used a domain account with administrative privilages.  The <a href="http://msdn.microsoft.com/en-us/library/aa385231%28VS.85%29.aspx">Event
Selection</a> xpath syntax is sensitive.  I was unable to create a query for
the Security log.  (<a href="http://support.microsoft.com/kb/323076">Security
Log Permissions</a>)
</p>
        <p>
4.  Run <strong>eventvwr.msc</strong> on the collector computer.  Right
click on your subscription and view Runtime Status.  Specified clients have to
display a green, Active status.  You will see events appearing in the <strong>Windows
Logs\Forwarded Events</strong> log shortly.
</p>
        <p>
          <font size="3">Setting up a Source Initiated Subscription:</font>
        </p>
        <p>
Source Initiated subscription is the preferred way of forwarding events as it is much
easier deployed via Group Policy.
</p>
        <p>
Repeat above steps 1 through 4, replacing sub_CI_Pull0.xml in step 3 with <strong><a href="http://sync-io.net:83/content/binary/sub_SI0.xml">sub_SI0.xml</a></strong>.
</p>
        <p>
The extra step to perform on XP/2003 clients is to <a href="http://msdn.microsoft.com/en-us/library/bb870973%28VS.85%29.aspx">tattoo
the registry</a> at:
</p>
        <p>
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\EventLog\EventForwarding\SubscriptionManager
</p>
        <address>Type: REG_SZ
</address>
        <address>Name: 1
</address>
        <address>Data: Server=collector.domain.com (FQDN of your collector, HTTP transport
only.  A valid URI is required for HTTPS, e.g. "Server=https://&lt;FQDN&gt;/wsman/SubscriptionManager/WEC")<br /></address>
        <p>
and then restart the <strong>WINRM </strong>service on the client.  These extra
steps should produce event 104 in your client's <strong>Windows Logs\Forwarded Events</strong> log
with the message: "The forwarder has successfully connected to the subscription manager
at address &lt;FQDN&gt;.", followed by event 100 with the message: "The subscription
&lt;sub_name&gt; is created successfully."
</p>
        <p>
          <u>WINRM notes:</u>
        </p>
        <ul>
          <li>
   WINRM configuration has not been altered from the default.  It seems
that setting TrustedHosts variable is not necessary (<strong>winrm set winrm/config/client
@{TrustedHosts="wildcard_machine_name_here"}</strong>)</li>
        </ul>
        <p>
          <u>EventCollector notes:</u>
        </p>
        <ul>
          <li>
   The Create Subscription GUI did not work for me at creating a collector
initiated subscription. 
</li>
          <li>
   For some reason I started getting an Access Denied error with this set
up and I had to either: change the User Account in Advanced Subscription Settings
from Machine Account to a Specific User account OR restart the WINRM service on the
client.<br /></li>
        </ul>
        <p>
          <font color="#ff0000">
            <strong>Please post comments and ideas you have.  I am
interested in how far we can go with this XP&lt;--&gt;2008 collector setup.</strong>
          </font>
        </p>
        <p>
 
</p>
        <p>
          <em>Reference Links:</em>
        </p>
        <p>
          <a href="http://blogs.technet.com/otto/default.aspx">
            <strong>http://blogs.technet.com/otto/default.aspx</strong>
          </a>
        </p>
        <p>
          <a href="http://support.microsoft.com/kb/936059">http://support.microsoft.com/kb/936059</a>
        </p>
        <p>
          <a href="http://msdn.microsoft.com/en-us/library/aa384291%28VS.85%29.aspx">http://msdn.microsoft.com/en-us/library/aa384291%28VS.85%29.aspx</a>
        </p>
        <p>
          <a href="http://certcities.com/editorial/columns/story.asp?EditorialsID=292">http://certcities.com/editorial/columns/story.asp?EditorialsID=292</a>
        </p>
        <p>
          <a href="http://technet2.microsoft.com/windowsserver/en/library/30757b93-7291-4254-b15e-f0aa5f45ac541033.mspx?mfr=true">http://technet2.microsoft.com/windowsserver/en/library/30757b93-7291-4254-b15e-f0aa5f45ac541033.mspx?mfr=true</a>
        </p>
        <p>
          <a href="http://technet.microsoft.com/en-us/magazine/cc137748.aspx">http://technet.microsoft.com/en-us/magazine/cc137748.aspx</a>
        </p>
        <p>
          <a href="http://support.microsoft.com/kb/912309">http://support.microsoft.com/kb/912309</a>
        </p>
        <p>
          <a href="http://openwsman.org/book/export/html/17">http://openwsman.org/book/export/html/17</a>
        </p>
        <p>
          <a href="http://blogs.technet.com/otto/archive/2007/02/09/sample-vista-ws-man-winrm-commands.aspx">http://blogs.technet.com/otto/archive/2007/02/09/sample-vista-ws-man-winrm-commands.aspx</a>
        </p>
        <p>
          <a href="http://msdn.microsoft.com/en-us/library/bb870973%28VS.85%29.aspx">http://msdn.microsoft.com/en-us/library/bb870973%28VS.85%29.aspx</a>
        </p>
        <p>
          <a href="http://msdn.microsoft.com/en-us/library/bb736545%28VS.85%29.aspx">http://msdn.microsoft.com/en-us/library/bb736545%28VS.85%29.aspx</a>
        </p>
        <p>
          <a href="http://msdn.microsoft.com/en-us/library/bb427443%28VS.85%29.aspx">http://msdn.microsoft.com/en-us/library/bb427443%28VS.85%29.aspx</a>
        </p>
        <p>
          <a href="http://www.microsoft.com/downloads/details.aspx?familyid=845289ca-16cc-4c73-8934-dd46b5ed1d33&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?familyid=845289ca-16cc-4c73-8934-dd46b5ed1d33&amp;displaylang=en</a>
        </p>
        <p>
          <a href="http://support.microsoft.com/kb/912030">http://support.microsoft.com/kb/912030</a>
        </p>
        <p>
          <a href="http://www.microsoft.com/technet/scriptcenter/newswire/winrm.mspx">http://www.microsoft.com/technet/scriptcenter/newswire/winrm.mspx</a>
        </p>
        <p>
          <a href="http://download.microsoft.com/download/5/D/6/5D6EAF2B-7DDF-476B-93DC-7CF0072878E6/wsm.doc">http://download.microsoft.com/download/5/D/6/5D6EAF2B-7DDF-476B-93DC-7CF0072878E6/wsm.doc</a>
        </p>
        <p>
          <a href="http://en.wikipedia.org/wiki/WS-Management">http://en.wikipedia.org/wiki/WS-Management</a>
        </p>
        <p>
          <a href="http://technet2.microsoft.com/WindowsVista/en/library/8fd4aad5-50bc-4389-bdae-e09ee464e46d1033.mspx?mfr=true">http://technet2.microsoft.com/WindowsVista/en/library/8fd4aad5-50bc-4389-bdae-e09ee464e46d1033.mspx?mfr=true</a>
        </p>
        <p>
          <a href="http://msdn.microsoft.com/en-us/library/aa385231%28VS.85%29.aspx">http://msdn.microsoft.com/en-us/library/aa385231%28VS.85%29.aspx</a>
        </p>
        <p>
          <em>Reference Posts:</em>
        </p>
        <p>
          <a href="http://forums.technet.microsoft.com/en-US/winserverManagement/thread/d6fd73ed-2e6d-43d1-943b-a45f9d81a461/">http://forums.technet.microsoft.com/en-US/winserverManagement/thread/d6fd73ed-2e6d-43d1-943b-a45f9d81a461/</a>
        </p>
        <p>
          <a href="http://forums.technet.microsoft.com/en-US/winserverManagement/thread/a4e8122a-3dc1-4954-bee7-bafed1fdb08e/">http://forums.technet.microsoft.com/en-US/winserverManagement/thread/a4e8122a-3dc1-4954-bee7-bafed1fdb08e/</a>
        </p>
        <p>
          <a href="http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.windows.server.networking&amp;tid=7dd38777-19d5-464d-aaeb-f31424b04ce1&amp;cat=&amp;lang=&amp;cr=&amp;sloc=&amp;p=1">http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.windows.server.networking&amp;tid=7dd38777-19d5-464d-aaeb-f31424b04ce1&amp;cat=&amp;lang=&amp;cr=&amp;sloc=&amp;p=1</a>
        </p>
        <p>
          <i>Attachments:</i>
        </p>
        <p>
          <a href="http://sync-io.net:83/content/binary/sub_CI_Pull0.xml">sub_CI_Pull0.xml (1.30
KB) </a>
        </p>
        <a href="http://sync-io.net:83/content/binary/sub_SI0.xml">sub_SI0.xml (1.46 KB)</a>
        <img width="0" height="0" src="http://sync-io.net/go/blog/aggbug.ashx?id=3a6627d1-946a-4c8a-b786-f3735703e32b" />
      </body>
      <title>EventCollector: Subscribing HTTP XP/2003 clients (Post 1)</title>
      <guid isPermaLink="false">http://sync-io.net/go/blog/PermaLink,guid,3a6627d1-946a-4c8a-b786-f3735703e32b.aspx</guid>
      <link>http://sync-io.net/go/blog/2008/06/18/EventCollectorSubscribingHTTPXP2003ClientsPost1.aspx</link>
      <pubDate>Wed, 18 Jun 2008 16:08:50 GMT</pubDate>
      <description>&lt;p&gt;
&lt;font size=3&gt;Setting up a Collector Initiated Subscription:&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
1. &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=845289ca-16cc-4c73-8934-dd46b5ed1d33&amp;amp;displaylang=en"&gt;Download&lt;/a&gt; and
install&amp;nbsp;&lt;strong&gt;WS-Management&lt;/strong&gt;/&lt;strong&gt;WINRM&lt;/strong&gt; on client &lt;u&gt;and&lt;/u&gt; collector
computers.&amp;nbsp; Configure &lt;strong&gt;WINRM&lt;/strong&gt; using command "&lt;strong&gt;winrm quickconfig&lt;/strong&gt;".&amp;nbsp; &lt;strong&gt;Event
Viewer&lt;/strong&gt; will be appended with a &lt;strong&gt;Microsoft-Windows-Forwarding/Operational&lt;/strong&gt; log.
&lt;/p&gt;
&lt;p&gt;
2. Configure&amp;nbsp;&lt;strong&gt;WECUTIL&lt;/strong&gt; on collector computer using command "&lt;strong&gt;WECutil
QC&lt;/strong&gt;".
&lt;/p&gt;
&lt;p&gt;
3. Import subscription using command '&lt;strong&gt;WECUTIL cs &lt;a href="http://sync-io.net:83/content/binary/sub_CI_Pull0.xml"&gt;sub_CI_Pull0.xml&lt;/a&gt;&lt;/strong&gt;'
on the collector computer.
&lt;/p&gt;
&lt;p&gt;
&lt;u&gt;NOTE:&lt;/u&gt; Modify &lt;strong&gt;sub_CI_Pull0.xml&lt;/strong&gt; before importing it.&amp;nbsp; I
used a domain account with administrative privilages.&amp;nbsp; The &lt;a href="http://msdn.microsoft.com/en-us/library/aa385231%28VS.85%29.aspx"&gt;Event
Selection&lt;/a&gt; xpath syntax is sensitive.&amp;nbsp; I was unable to create a query for
the Security log.&amp;nbsp; (&lt;a href="http://support.microsoft.com/kb/323076"&gt;Security
Log Permissions&lt;/a&gt;)
&lt;/p&gt;
&lt;p&gt;
4.&amp;nbsp; Run &lt;strong&gt;eventvwr.msc&lt;/strong&gt; on the collector computer.&amp;nbsp; Right
click on your subscription and view Runtime Status.&amp;nbsp; Specified clients have to
display a green, Active status.&amp;nbsp; You will see events appearing in the &lt;strong&gt;Windows
Logs\Forwarded Events&lt;/strong&gt; log shortly.
&lt;/p&gt;
&lt;p&gt;
&lt;font size=3&gt;Setting up a&amp;nbsp;Source Initiated Subscription:&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
Source Initiated subscription is the preferred way of forwarding events as it is much
easier deployed via Group Policy.
&lt;/p&gt;
&lt;p&gt;
Repeat above steps 1 through 4, replacing sub_CI_Pull0.xml in step 3 with &lt;strong&gt;&lt;a href="http://sync-io.net:83/content/binary/sub_SI0.xml"&gt;sub_SI0.xml&lt;/a&gt;&lt;/strong&gt;.
&lt;/p&gt;
&lt;p&gt;
The extra step to perform on XP/2003 clients is to &lt;a href="http://msdn.microsoft.com/en-us/library/bb870973%28VS.85%29.aspx"&gt;tattoo
the registry&lt;/a&gt; at:
&lt;/p&gt;
&lt;p&gt;
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\EventLog\EventForwarding\SubscriptionManager
&lt;/p&gt;
&lt;address&gt;Type: REG_SZ
&lt;/address&gt;
&lt;address&gt;Name: 1
&lt;/address&gt;
&lt;address&gt;Data: Server=collector.domain.com (FQDN of your collector, HTTP transport
only.&amp;nbsp; A valid URI is required for HTTPS, e.g. "Server=https://&amp;lt;FQDN&amp;gt;/wsman/SubscriptionManager/WEC")&lt;br&gt;
&lt;/address&gt;
&lt;p&gt;
and then restart the &lt;strong&gt;WINRM &lt;/strong&gt;service on the client.&amp;nbsp; These extra
steps should produce event 104 in your client's &lt;strong&gt;Windows Logs\Forwarded Events&lt;/strong&gt; log
with the message: "The forwarder has successfully connected to the subscription manager
at address &amp;lt;FQDN&amp;gt;.", followed by event 100 with the message: "The subscription
&amp;lt;sub_name&amp;gt; is created successfully."
&lt;/p&gt;
&lt;p&gt;
&lt;u&gt;WINRM notes:&lt;/u&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&amp;nbsp;&amp;nbsp; WINRM configuration has not been altered from the default.&amp;nbsp; It seems
that setting TrustedHosts variable is not necessary (&lt;strong&gt;winrm set winrm/config/client
@{TrustedHosts="wildcard_machine_name_here"}&lt;/strong&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;u&gt;EventCollector notes:&lt;/u&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&amp;nbsp;&amp;nbsp; The Create Subscription GUI did not work for me at creating a collector
initiated subscription. 
&lt;li&gt;
&amp;nbsp;&amp;nbsp; For some reason I started getting an Access Denied error with this set
up and I had to either: change the User Account in Advanced Subscription Settings
from Machine Account to a Specific User account OR restart the WINRM service on the
client.&lt;br&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;font color=#ff0000&gt;&lt;strong&gt;Please post comments and ideas you have.&amp;nbsp; I am interested
in how far we can go with this XP&amp;lt;--&amp;gt;2008 collector setup.&lt;/strong&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;Reference Links:&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blogs.technet.com/otto/default.aspx"&gt;&lt;strong&gt;http://blogs.technet.com/otto/default.aspx&lt;/strong&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://support.microsoft.com/kb/936059"&gt;http://support.microsoft.com/kb/936059&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://msdn.microsoft.com/en-us/library/aa384291%28VS.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/aa384291%28VS.85%29.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://certcities.com/editorial/columns/story.asp?EditorialsID=292"&gt;http://certcities.com/editorial/columns/story.asp?EditorialsID=292&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://technet2.microsoft.com/windowsserver/en/library/30757b93-7291-4254-b15e-f0aa5f45ac541033.mspx?mfr=true"&gt;http://technet2.microsoft.com/windowsserver/en/library/30757b93-7291-4254-b15e-f0aa5f45ac541033.mspx?mfr=true&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://technet.microsoft.com/en-us/magazine/cc137748.aspx"&gt;http://technet.microsoft.com/en-us/magazine/cc137748.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://support.microsoft.com/kb/912309"&gt;http://support.microsoft.com/kb/912309&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://openwsman.org/book/export/html/17"&gt;http://openwsman.org/book/export/html/17&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blogs.technet.com/otto/archive/2007/02/09/sample-vista-ws-man-winrm-commands.aspx"&gt;http://blogs.technet.com/otto/archive/2007/02/09/sample-vista-ws-man-winrm-commands.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://msdn.microsoft.com/en-us/library/bb870973%28VS.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/bb870973%28VS.85%29.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://msdn.microsoft.com/en-us/library/bb736545%28VS.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/bb736545%28VS.85%29.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://msdn.microsoft.com/en-us/library/bb427443%28VS.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/bb427443%28VS.85%29.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=845289ca-16cc-4c73-8934-dd46b5ed1d33&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=845289ca-16cc-4c73-8934-dd46b5ed1d33&amp;amp;displaylang=en&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://support.microsoft.com/kb/912030"&gt;http://support.microsoft.com/kb/912030&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.microsoft.com/technet/scriptcenter/newswire/winrm.mspx"&gt;http://www.microsoft.com/technet/scriptcenter/newswire/winrm.mspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://download.microsoft.com/download/5/D/6/5D6EAF2B-7DDF-476B-93DC-7CF0072878E6/wsm.doc"&gt;http://download.microsoft.com/download/5/D/6/5D6EAF2B-7DDF-476B-93DC-7CF0072878E6/wsm.doc&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://en.wikipedia.org/wiki/WS-Management"&gt;http://en.wikipedia.org/wiki/WS-Management&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://technet2.microsoft.com/WindowsVista/en/library/8fd4aad5-50bc-4389-bdae-e09ee464e46d1033.mspx?mfr=true"&gt;http://technet2.microsoft.com/WindowsVista/en/library/8fd4aad5-50bc-4389-bdae-e09ee464e46d1033.mspx?mfr=true&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://msdn.microsoft.com/en-us/library/aa385231%28VS.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/aa385231%28VS.85%29.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;Reference Posts:&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://forums.technet.microsoft.com/en-US/winserverManagement/thread/d6fd73ed-2e6d-43d1-943b-a45f9d81a461/"&gt;http://forums.technet.microsoft.com/en-US/winserverManagement/thread/d6fd73ed-2e6d-43d1-943b-a45f9d81a461/&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://forums.technet.microsoft.com/en-US/winserverManagement/thread/a4e8122a-3dc1-4954-bee7-bafed1fdb08e/"&gt;http://forums.technet.microsoft.com/en-US/winserverManagement/thread/a4e8122a-3dc1-4954-bee7-bafed1fdb08e/&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.windows.server.networking&amp;amp;tid=7dd38777-19d5-464d-aaeb-f31424b04ce1&amp;amp;cat=&amp;amp;lang=&amp;amp;cr=&amp;amp;sloc=&amp;amp;p=1"&gt;http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.windows.server.networking&amp;amp;tid=7dd38777-19d5-464d-aaeb-f31424b04ce1&amp;amp;cat=&amp;amp;lang=&amp;amp;cr=&amp;amp;sloc=&amp;amp;p=1&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;Attachments:&lt;/i&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://sync-io.net:83/content/binary/sub_CI_Pull0.xml"&gt;sub_CI_Pull0.xml (1.30
KB)&amp;nbsp;&lt;/a&gt;
&lt;/p&gt;
&lt;a href="http://sync-io.net:83/content/binary/sub_SI0.xml"&gt;sub_SI0.xml (1.46 KB)&lt;/a&gt;&lt;img width="0" height="0" src="http://sync-io.net/go/blog/aggbug.ashx?id=3a6627d1-946a-4c8a-b786-f3735703e32b" /&gt;</description>
      <comments>http://sync-io.net/go/blog/CommentView,guid,3a6627d1-946a-4c8a-b786-f3735703e32b.aspx</comments>
      <category>Logging</category>
      <category>Server2008</category>
    </item>
  </channel>
</rss>