What logs are created by Windows for reporting general operating system and software application events?

What will be an ideal response?


Windows generates the following logs for reporting general operating system and software application events:
* Application log-Records information about how software applications are performing, if the programmer has designed the software to write information into the log.
* Security log-Records access and security information about logon accesses and file, folder, and system policy changes. If you have auditing set up, for instance, file auditing, use the security log to track each audited event, such as a successful or failed attempt to access a file. If you choose to audit an account or folder, the audit data is recorded in the security log.
* Setup log-Contains a record of installation events, such as installing a role or feature through Server Manager. For example, if a software error occurs, it may be recorded in the log.
* System log-Records information about system-related events such as hardware errors, driver problems, and hard drive errors.
* Forwarded events log-Contains events recorded by remote computers and forwarded to this computer, which is called the collector computer.

Computer Science & Information Technology

You might also like to view...

Why does SCAN have a lower variance of response times than SSTF?

What will be an ideal response?

Computer Science & Information Technology

What is most appropriately used to help an attorney learn the terms and functions used in digital forensics?

a. A glossary b. Preliminary testimony c. A final report d. An examination plan

Computer Science & Information Technology

Given the following declaration:  int j;int sum;double sale[10][7];    which of the following correctly finds the sum of the elements of the fourth column of sale?

A. sum = 0; for(j = 0; j < 7; j++)  sum = sum + sale[j][3]; B. sum = 0; for(j = 0; j < 7; j++)   sum = sum + sale[j][4]; C. sum = 0; for(j = 0; j < 10; j++)   sum = sum + sale[j][4]; D. sum = 0; for(j = 0; j < 10; j++)   sum = sum + sale[j][3];

Computer Science & Information Technology

What does the first argument in the inflate method display?

A. layout parameters B. URI C. XML layout D. SDK

Computer Science & Information Technology