<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Writing To The Windows Event Log Using C#</title>
	<atom:link href="http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/</link>
	<description>C# Programming Tutorials</description>
	<lastBuildDate>Fri, 03 Sep 2010 10:48:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Mike Hillman</title>
		<link>http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/comment-page-1/#comment-2227</link>
		<dc:creator>Mike Hillman</dc:creator>
		<pubDate>Thu, 29 Apr 2010 15:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=928#comment-2227</guid>
		<description>ClickOnce applications may need to write to the Application log.  The way in which MS searches for the existence of the log causes it to reference an admin restricted log (Security), which results in an error.</description>
		<content:encoded><![CDATA[<p>ClickOnce applications may need to write to the Application log.  The way in which MS searches for the existence of the log causes it to reference an admin restricted log (Security), which results in an error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/comment-page-1/#comment-2221</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 29 Apr 2010 09:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=928#comment-2221</guid>
		<description>&lt;em&gt;ClickOnce&lt;/em&gt; is designed to be used for installing applications which are installed per-user, and not per-machine.  These type of installations should not require administrative permissions. 

I haven&#039;t tried installing this example with a &lt;em&gt;ClickOnce&lt;/em&gt; installation, so I am not too sure what error is returned, but since this example requires administrative privileges to access the Windows Event Log, I assume &lt;em&gt;ClickOnce&lt;/em&gt; is not the right deployment option.</description>
		<content:encoded><![CDATA[<p><em>ClickOnce</em> is designed to be used for installing applications which are installed per-user, and not per-machine.  These type of installations should not require administrative permissions. </p>
<p>I haven&#8217;t tried installing this example with a <em>ClickOnce</em> installation, so I am not too sure what error is returned, but since this example requires administrative privileges to access the Windows Event Log, I assume <em>ClickOnce</em> is not the right deployment option.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Hillman</title>
		<link>http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/comment-page-1/#comment-2214</link>
		<dc:creator>Mike Hillman</dc:creator>
		<pubDate>Wed, 28 Apr 2010 14:00:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=928#comment-2214</guid>
		<description>You cannot change &quot;asInvoker&quot; to &quot;requireAdministrator&quot; for a ClickOnce deployment.</description>
		<content:encoded><![CDATA[<p>You cannot change &#8220;asInvoker&#8221; to &#8220;requireAdministrator&#8221; for a ClickOnce deployment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enumerating and Controlling Windows Services with C#</title>
		<link>http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/comment-page-1/#comment-272</link>
		<dc:creator>Enumerating and Controlling Windows Services with C#</dc:creator>
		<pubDate>Sat, 03 Oct 2009 20:02:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=928#comment-272</guid>
		<description>[...] I have already covered how to create and use an app.manifest file in a previous article, so if you want further information you can check it out here: Writing To The Windows Event Log Using C# [...]</description>
		<content:encoded><![CDATA[<p>[...] I have already covered how to create and use an app.manifest file in a previous article, so if you want further information you can check it out here: Writing To The Windows Event Log Using C# [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Create a Logger using the Trace Listener in C#</title>
		<link>http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/comment-page-1/#comment-174</link>
		<dc:creator>Create a Logger using the Trace Listener in C#</dc:creator>
		<pubDate>Wed, 16 Sep 2009 21:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=928#comment-174</guid>
		<description>[...] crucial your application can log errors, be it to the database, or to a text file, or even to the Windows Event Log if necessary. The .NET Framework contains a mechanism called a Trace Listener. This Listener is an [...]</description>
		<content:encoded><![CDATA[<p>[...] crucial your application can log errors, be it to the database, or to a text file, or even to the Windows Event Log if necessary. The .NET Framework contains a mechanism called a Trace Listener. This Listener is an [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/comment-page-1/#comment-156</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 10 Sep 2009 19:54:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=928#comment-156</guid>
		<description>This code will not work under Windows Vista or newer. You need to add a manifest file and run your code with administrator privileges - then it will work :)

Cheers
Dave</description>
		<content:encoded><![CDATA[<p>This code will not work under Windows Vista or newer. You need to add a manifest file and run your code with administrator privileges &#8211; then it will work <img src='http://www.daveoncsharp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers<br />
Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J.C</title>
		<link>http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/comment-page-1/#comment-150</link>
		<dc:creator>J.C</dc:creator>
		<pubDate>Thu, 10 Sep 2009 09:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=928#comment-150</guid>
		<description>Check http://www.x2codecreative.com/programming_-_.net_-_adding_a_windows_log_entry.show.146.aspx</description>
		<content:encoded><![CDATA[<p>Check <a href="http://www.x2codecreative.com/programming_-_.net_-_adding_a_windows_log_entry.show.146.aspx" rel="nofollow">http://www.x2codecreative.com/programming_-_.net_-_adding_a_windows_log_entry.show.146.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to Read, Write, and Delete from the Windows Registry with C#</title>
		<link>http://www.daveoncsharp.com/2009/08/writing-to-the-windows-event-log-using-csharp/comment-page-1/#comment-41</link>
		<dc:creator>How to Read, Write, and Delete from the Windows Registry with C#</dc:creator>
		<pubDate>Mon, 17 Aug 2009 07:29:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=928#comment-41</guid>
		<description>[...] how to use the requestedExecutionLevel section of the manifest file in my previous post &#8211; Writing To The Windows Event Log Using C#, so you can have a look towards the end of that article if you want to know a little bit more about [...]</description>
		<content:encoded><![CDATA[<p>[...] how to use the requestedExecutionLevel section of the manifest file in my previous post &#8211; Writing To The Windows Event Log Using C#, so you can have a look towards the end of that article if you want to know a little bit more about [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
