473,670 Members | 2,407 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Very Easy Question, How to write log to SECURTY Event Log? Please help

Is there any special code I have to write to log event to Security
Event Log? The following code give me "Very Easy Question, How to
write log to SECURTY Event Log? Please help" Error

// Create an EventLog instance and assign its source.
EventLog myLog = new EventLog();
myLog.Source = "Security";

// Write an informational entry to the event log.
myLog.WriteEntr y("Writing warning to event log.",
EventLogEntryTy pe.Warning);
but as soon as I change "Security" to "Applicatio n" ,
everything works fine

// Create an EventLog instance and assign its source.
EventLog myLog = new EventLog();
myLog.Source = "Applicatio n";

// Write an informational entry to the event log.
myLog.WriteEntr y("Writing warning to event log.",
EventLogEntryTy pe.Warning);
Any ideas?
Thanks in advance
John

May 1 '06 #1
8 6610
John,

What happens when you try and write to the security event log? Do you
get an exception or something of that nature? If so, what is it?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"John" <jo*****@yahoo. com> wrote in message
news:11******** *************@v 46g2000cwv.goog legroups.com...
Is there any special code I have to write to log event to Security
Event Log? The following code give me "Very Easy Question, How to
write log to SECURTY Event Log? Please help" Error

// Create an EventLog instance and assign its source.
EventLog myLog = new EventLog();
myLog.Source = "Security";

// Write an informational entry to the event log.
myLog.WriteEntr y("Writing warning to event log.",
EventLogEntryTy pe.Warning);
but as soon as I change "Security" to "Applicatio n" ,
everything works fine

// Create an EventLog instance and assign its source.
EventLog myLog = new EventLog();
myLog.Source = "Applicatio n";

// Write an informational entry to the event log.
myLog.WriteEntr y("Writing warning to event log.",
EventLogEntryTy pe.Warning);
Any ideas?
Thanks in advance
John

May 1 '06 #2
Only administrator can read from the security log, but user programs cannot
write to the security log, this is a privilege of the security subsystem
only.

Willy.

"John" <jo*****@yahoo. com> wrote in message
news:11******** *************@v 46g2000cwv.goog legroups.com...
| Is there any special code I have to write to log event to Security
| Event Log? The following code give me "Very Easy Question, How to
| write log to SECURTY Event Log? Please help" Error
|
| // Create an EventLog instance and assign its source.
| EventLog myLog = new EventLog();
| myLog.Source = "Security";
|
| // Write an informational entry to the event log.
| myLog.WriteEntr y("Writing warning to event log.",
| EventLogEntryTy pe.Warning);
|
|
| but as soon as I change "Security" to "Applicatio n" ,
| everything works fine
|
| // Create an EventLog instance and assign its source.
| EventLog myLog = new EventLog();
| myLog.Source = "Applicatio n";
|
| // Write an informational entry to the event log.
| myLog.WriteEntr y("Writing warning to event log.",
| EventLogEntryTy pe.Warning);
|
|
| Any ideas?
| Thanks in advance
| John
|
May 1 '06 #3
Try this article:

http://msdn.microsoft.com/msdnmag/is...g/default.aspx

Joe K.

"John" <jo*****@yahoo. com> wrote in message
news:11******** *************@v 46g2000cwv.goog legroups.com...
Is there any special code I have to write to log event to Security
Event Log? The following code give me "Very Easy Question, How to
write log to SECURTY Event Log? Please help" Error

// Create an EventLog instance and assign its source.
EventLog myLog = new EventLog();
myLog.Source = "Security";

// Write an informational entry to the event log.
myLog.WriteEntr y("Writing warning to event log.",
EventLogEntryTy pe.Warning);
but as soon as I change "Security" to "Applicatio n" ,
everything works fine

// Create an EventLog instance and assign its source.
EventLog myLog = new EventLog();
myLog.Source = "Applicatio n";

// Write an informational entry to the event log.
myLog.WriteEntr y("Writing warning to event log.",
EventLogEntryTy pe.Warning);
Any ideas?
Thanks in advance
John

May 1 '06 #4
if throw exception the following exception:

Cannot open log for source 'Security'. You may not have write access.
Nicholas Paldino [.NET/C# MVP] wrote:
John,

What happens when you try and write to the security event log? Do you
get an exception or something of that nature? If so, what is it?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"John" <jo*****@yahoo. com> wrote in message
news:11******** *************@v 46g2000cwv.goog legroups.com...
Is there any special code I have to write to log event to Security
Event Log? The following code give me "Very Easy Question, How to
write log to SECURTY Event Log? Please help" Error

// Create an EventLog instance and assign its source.
EventLog myLog = new EventLog();
myLog.Source = "Security";

// Write an informational entry to the event log.
myLog.WriteEntr y("Writing warning to event log.",
EventLogEntryTy pe.Warning);
but as soon as I change "Security" to "Applicatio n" ,
everything works fine

// Create an EventLog instance and assign its source.
EventLog myLog = new EventLog();
myLog.Source = "Applicatio n";

// Write an informational entry to the event log.
myLog.WriteEntr y("Writing warning to event log.",
EventLogEntryTy pe.Warning);
Any ideas?
Thanks in advance
John


May 1 '06 #5
Looks like it only works for WIndows 2003, not Windox XP

May 1 '06 #6
True. As I said in my previous answer, you can't write to the Security log
from user code. Even the code as presented in the article needs elevated
privileges to register a provider and the program needs to run with
'SeAuditingPriv ileges' enabled, something you don't want to do from regular
user applications, only very security conscious services need this.
Why do you want to write to the security log anyway, applications and
services should write to the 'Application' log or a private log.

Willy.
"John" <jo*****@yahoo. com> wrote in message
news:11******** **************@ j73g2000cwa.goo glegroups.com.. .
| Looks like it only works for WIndows 2003, not Windox XP
|
May 1 '06 #7
Try this: http://support.microsoft.com/kb/323076
"Willy Denoyette [MVP]" wrote:
True. As I said in my previous answer, you can't write to the Security log
from user code. Even the code as presented in the article needs elevated
privileges to register a provider and the program needs to run with
'SeAuditingPriv ileges' enabled, something you don't want to do from regular
user applications, only very security conscious services need this.
Why do you want to write to the security log anyway, applications and
services should write to the 'Application' log or a private log.

Willy.
"John" <jo*****@yahoo. com> wrote in message
news:11******** **************@ j73g2000cwa.goo glegroups.com.. .
| Looks like it only works for WIndows 2003, not Windox XP
|

May 25 '06 #8

"Kevin" <Ke***@discussi ons.microsoft.c om> wrote in message
news:38******** *************** ***********@mic rosoft.com...
| Try this: http://support.microsoft.com/kb/323076
|
|

Why? This does explain how to set 'Application' and 'System' eventlog
security, it doesn't say you can write to the 'Security' log because you
can't.

Willy.
May 25 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1383
by: Alex | last post by:
Hello I am interested learn more about .NET but am uncertain of exactly what niche it fills in the world of programming. (The more I read the more I am confused). What I am looking for is the ability ot write programs to work on mobile phones, as well as web pages, and to interact with servers. My background is a basic knowledge of VBA, XHTML and Java. Java can
4
4616
by: Steven | last post by:
I just downloaded the June 2005 release and I want to set up basic logging to log problems such as exceptions. I have created a category named Exceptions with the following: <category name="Exceptions"> <destinations> <destination name="Event Log Destination" sink="Event Log Sink" format="Text Formatter" /> </destinations> </category>
10
1862
by: Jason Curl | last post by:
Greetings, I have an array of 32 values. This makes it extremely fast to access elements in this array based on an index provided by a separate enum. This array is defined of type "unsigned long int". I have a typedef for this: typedef unsigned long int Uint32; typedef float Float32; Uint32 myArray;
3
1545
by: Jesper Denmark | last post by:
Within the following construction switch (expression) { int i; i = GetArgs() //return 2 case constant-expression:
6
4591
by: No_Excuses | last post by:
All, I am interested in reading the text of a web page and parsing it. After searching on this newgroup I decided to use the following: ******************************* START OF CODE ************************ String sTemp = "http://cgi3.igl.net/cgi-bin/ladder/teamsql/team_view.cgi?ladd=teamknights&num=238&showall=1"; WebRequest myWebRequest = WebRequest.Create(sTemp); WebResponse myWebResponse = myWebRequest.GetResponse();
3
1177
by: Brent | last post by:
Hi everyone. I am moving from VB.Net to C#. C# is pretty easy but i do have one thing i don't like that im probably doing it the hard way and want to see if there is an easy way to do it. When you want to code an event for a control on a form in VB.Net you just select the control from the left comobox on top of the code window. You then select the event from the right combobox. Apparently C# doesn't have this. Say you want to code off the...
6
1756
by: msnews.microsoft.com | last post by:
Hello All, I am very new to ASP.NET and I have a basic question. Can somebody please explain? I have an .aspx Web Page with a textbox control. When the Page initially loads I am calling a Javascript function to write a text information in the text box.
1
4155
by: Kiran | last post by:
Hello All, I created a grid, where I register events every time the user changes an existing value inside the grid control. Right now, I am using the event: EVT_GRID_CELL_CHANGE. However, I realized that I need to register that same kind of event even if the user doesnt change the value, but just selects and then deselects. I tried creating my own custom event, where i check to see if the editor is activated and then deactivated, and if...
1
1728
by: halekio | last post by:
Hi all, Please bear with me as I've only started programming in C# 2 weeks ago and this is my first contact with OOP. I ran into a situation where I needed to catch an event in an object that had no connection or reference to the object that triggered it. It goes something like this: (not syntactically correct..it's just for the idea)
0
8384
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8591
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7412
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6212
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4208
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4388
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2799
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2037
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1791
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.