Windows Event Monitoring
Collection of Windows PowerShell Event log commands and Windows Event ID tables.
PowerShell Commands
Get list of available logs (local)
Get-EventLog -List
Show log for remote system
Show-EventLog -ComputerName <computer-name>
Get events from multiple systems
Get-EventLog -LogName System -ComputerName <computer-name0>, <computer-name1>, <computer-name2>
Get all events (local) including keyword in the message
Get-EventLog -LogName System -Message *keyword*
Display property values of an event
Get-EventLog -LogName System -Newest 1 | Select-Object -Property *
Get recent entires from Application, Security and System event logs
Get-EventLog -Newest 5 -LogName Application | Format-List
Get-EventLog -Newest 5 -LogName Security | Format-List
Get-EventLog -Newest 5 -LogName System | Format-List
Get error event from specific event log
Get-EventLog -LogName <event-log> -EntryType Error
Get list of events that occured during a specific date/time range
$Begin = Get-Date -Date '8/17/2019 08:00:00'
$End = Get-Date -Date '8/18/2019 17:00:00'
Get-EventLog -LogName <event-log> -EntryType Error -After $Begin -Before $End
Get list of Security events based on Event ID
Get-EventLog Security | ? { $_EventId -eq 4800}
Get-WinEvent -FilterHashTable @{LogName="Security"; ID=4774}
Get-WinEvent -FilterHashtable @{ LogName='Security'; Id=4624; Data=10} | FL TimeCreated,Message
Get-WinEvent -FilterHashTable @{LogName="Security"; ID=4672} -MaxEvents 1 | Format-List -Property *
Account Management User Events
Event ID | Name |
---|---|
4720 | A user account was created |
4722 | A user account was enabled |
4723 | An attempt was made to change an account’s password |
4724 | An attempt was made to reset an accounts password |
4725 | A user account was disabled |
4726 | A user account was deleted |
4738 | A user account was changed |
4740 | A user account was locked out |
4767 | A user account was unlocked |
4781 | The name of an account was changed |
Logon Events
Event ID | Level | Name |
---|---|---|
4624 | Informational | An account was successfully logged on. Logon types: 2. Interactive (keyboard/screen of system 3. Network (shares) 4. Batch (scheduled tasks) 5.Service (service startup) 7. Unlock (pw protected screen saver) 8. NetworkClearText 9. NewCredentials (RunAs) 10. RemoteInteractive (Remote Desktop/Terminal Services/Remote Assitance) 11. CachedInteractive (login with cached domain credentials) |
4625 | Informational | An account failed to logon (see table below for failure codes) |
4634 | Informational | An account was logged off |
4648 | Informational | Logon attempted using explicit credentials |
4740 | Informational | A user account was locked out |
Account Logon Failure Codes - Event ID 4625
Status/Sub Status Code | Name |
---|---|
0xC0000064 | Username does not exist |
0xC000006A | User name correct, password wrong |
0xC0000234 | User is currently locked out |
0xC0000072 | Users account is currently disasbled |
0xC000006F | User tried to logon outside time of day restrictions |
0xC0000070 | Workstation restriction, or Authentication Policy Silo violation, look for Event ID 4820 on DC |
0xC0000193 | Account has expired |
0xC0000071 | Account has expired password |
0xC0000133 | System clocks between DC and PC too far out of sync |
0xC0000224 | User is required to change password at next logon |
0xC0000225 | evidently a bug in Windows and not a risk |
0xc000015b | User has not been granted the requested logon type on the specific machine |
Account Management Security Group Events
Local | Global | Universal | |
---|---|---|---|
Created | 4731 | 4727 | 4754 |
Changed | 4735 | 4737 | 4755 |
Deleted | 4734 | 4730 | 4758 |
Member Added | 4732 | 4728 | 4756 |
Member Removed | 4733 | 4729 | 5757 |
Account Management Distribution Group Events
Local | Global | Universal | |
---|---|---|---|
Created | 4744 | 4749 | 4759 |
Changed | 4745 | 4750 | 4760 |
Deleted | 4748 | 4753 | 4763 |
Member Added | 4746 | 4751 | 4761 |
Member Removed | 4747 | 4752 | 4762 |
Sysmon Events
System Monitor (Sysmon) is a Windows system service and device driver that, once installed on a system, remains resident across system reboots to monitor and log system activity to the Windows event log. It provides detailed information about process creations, network connections, and changes to file creation time. By collecting the events it generates using Windows Event Collection or SIEM agents and subsequently analyzing them, you can identify malicious or anomalous activity and understand how intruders and malware operate on your network.
Event ID | Name |
---|---|
1 | Process creation |
2 | A process changed a file creation time |
3 | Network connection |
4 | Sysmon service state changed |
5 | Process termination |
6 | Driver loaded |
7 | Image loaded |
8 | CreateRemoteThread |
9 | RawAccessRead |
10 | ProcessAccess |
11 | FileCreate |
12 | RegistryEvent (object create and delete) |
13 | RegistryEvent (registry value set) |
14 | RegistryEvent (registry object renamed) |
15 | FileCreateStreamHash (file steam created) |
16 | Sysmon configuration change (cannot be filtered) |
17 | PipeEvent (named pipe created) |
18 | PipeEvent (named pipe connected) |
19 | WmiEvent (WmiEventFilter activity detected) |
20 | WmiEvent (WmiEventConsumer activity detected) |
21 | WmiEvent (WmiEventConsumerToFilter actively detected) |
22 | DNSEvent (DNS query) |
255 | error |
Windows Firewall Events
Event ID | Name |
---|---|
5146 | The Windows Filtering Platform has blocked a packet |
5147 | A more restrictive Windows Filtering Platform filter has blocked a packet |
5148 | The Windows Filtering Platform has detected a DoS attack and entered defensive mode, packets associated with this attack will be discarded |
5149 | The DoS attack has subsided and normal processing is being resumed |
5150 | The Windows Filtering Platform has blocked a packet |
5151 | A more restrictive Windows Filtering Platform filter has blocked a packet |
5152 | The Windows Filtering Platform has blocked a packet |
5153 | A more restrictive Windows Filtering Platform filter has blocked a packet |
5154 | The Windows Filtering Platform has permitted an application or service to listen on a port for incoming connections |
5155 | The Windows Filtering Platform has blocked an application or service from listening on a port for incoming connections |
5156 | The Windows Filtering Platform has allowed a connection |
5157 | The Windows Filtering Platform has blocked a connection |
5158 | The Windows Filtering Platform has permitted a bind to a local port |
5159 | The Windows Filtering Platform has blocked a bind to a local port |
Applocker Events
AppLocker helps you control which apps and files users can run. These include executable files, scripts, Windows Installer files, dynamic-link libraries (DLLs), packaged apps, and packaged app installers.
Event ID | Level | Name |
---|---|---|
8000 | Error | Application Identity Policy conversion failed. This condition indicates issues applying policy to the system |
8002 | Information | FileName was allowed to run |
8003 (Audit only) |
Warning | FileName was allowed to run but would have been prevented if policy enforced. (EXE’s) |
8004 | Error | FileName was not allowed to run |
8005 | Information | FileName was allowed to run |
8006 (Audit only) |
Error | FileName was allowed to run but would have been prevented if policy enforced. (Script/MSI’s) |
8007 | Error | FileName was not allowed to run (by policy). |
Windows Defender Antivirus Events
Event ID | Name |
---|---|
1000 | An antimalware scan started |
1001 | An antimalware scan finished |
1002 | Scan stopped (canceled) before finished |
1005 | Scan terminated due to error |
1006 | Detected malware |
1007 | Action performed to protect system from malware |
1008 | Action on malware failed |
1010 | Antimalware could not restore an item from quarantine |
1015 | Antimalware platform detected suspicious behaviour |
1116 | Platform detected malware or unwanted software |
1117 | Malware remediation or action taken |
1119 | Remediation error |
2001 | Failed to update signatures |
2003 | Failed to update engine |
2004 | Reverting to last know good signatures |
3002 | Real time protection failed |
5008 | Antimalware engine encountered error and failed |
Active Directory Directory Services - Appendix L: Events to Monitor
A potential criticality of High means that one occurrence of the event should be investigated. Potential criticality of Medium or Low means that these events should only be investigated if they occur unexpectedly or in numbers that significantly exceed the expected baseline in a measured period of time.
Current Windows Event ID | Legacy Windows Event ID | Potential Criticality | Event Summary |
---|---|---|---|
4618 | N/A | High | A monitored security event pattern has occurred. |
4649 | N/A | High | A replay attack was detected. May be a harmless false positive due to misconfiguration error. |
4719 | 612 | High | System audit policy was changed. |
4765 | N/A | High | SID History was added to an account. |
4766 | N/A | High | An attempt to add SID History to an account failed. |
4794 | N/A | High | An attempt was made to set the Directory Services Restore Mode. |
4897 | 801 | High | Role separation enabled: |
4964 | N/A | High | Special groups have been assigned to a new logon. |
5124 | N/A | High | A security setting was updated on the OCSP Responder Service |
N/A | 550 | Medium to High | Possible denial-of-service (DoS) attack |
1102 | 517 | Medium to High | The audit log was cleared |
4621 | N/A | Medium | Administrator recovered system from CrashOnAuditFail. Users who are not administrators will now be allowed to log on. Some auditable activity might not have been recorded. |
4675 | N/A | Medium | SIDs were filtered. |
4692 | N/A | Medium | Backup of data protection master key was attempted. |
4693 | N/A | Medium | Recovery of data protection master key was attempted. |
4706 | 610 | Medium | A new trust was created to a domain. |
4713 | 617 | Medium | Kerberos policy was changed. |
4714 | 618 | Medium | Encrypted data recovery policy was changed. |
4715 | N/A | Medium | The audit policy (SACL) on an object was changed. |
4716 | 620 | Medium | Trusted domain information was modified. |
4724 | 628 | Medium | An attempt was made to reset an account’s password. |
4727 | 631 | Medium | A security-enabled global group was created. |
4735 | 639 | Medium | A security-enabled local group was changed. |
4737 | 641 | Medium | A security-enabled global group was changed. |
4739 | 643 | Medium | Domain Policy was changed. |
4754 | 658 | Medium | A security-enabled universal group was created. |
4755 | 659 | Medium | A security-enabled universal group was changed. |
4764 | 667 | Medium | A security-disabled group was deleted |
4764 | 668 | Medium | A group’s type was changed. |
4780 | 684 | Medium | The ACL was set on accounts which are members of administrators groups. |
4816 | N/A | Medium | RPC detected an integrity violation while decrypting an incoming message. |
4865 | N/A | Medium | A trusted forest information entry was added. |
4866 | N/A | Medium | A trusted forest information entry was removed. |
4867 | N/A | Medium | A trusted forest information entry was modified. |
4868 | 772 | Medium | The certificate manager denied a pending certificate request. |
4870 | 774 | Medium | Certificate Services revoked a certificate. |
4882 | 786 | Medium | The security permissions for Certificate Services changed. |
4885 | 789 | Medium | The audit filter for Certificate Services changed. |
4890 | 794 | Medium | The certificate manager settings for Certificate Services changed. |
4892 | 796 | Medium | A property of Certificate Services changed. |
4896 | 800 | Medium | One or more rows have been deleted from the certificate database. |
4906 | N/A | Medium | The CrashOnAuditFail value has changed. |
4907 | N/A | Medium | Auditing settings on object were changed. |
4908 | N/A | Medium | Special Groups Logon table modified. |
4912 | 807 | Medium | Per User Audit Policy was changed. |
4960 | N/A | Medium | IPsec dropped an inbound packet that failed an integrity check. If this problem persists, it could indicate a network issue or that packets are being modified in transit to this computer. Verify that the packets sent from the remote computer are the same as those received by this computer. This error might also indicate interoperability problems with other IPsec implementations. |
4961 | N/A | Medium | IPsec dropped an inbound packet that failed a replay check. If this problem persists, it could indicate a replay attack against this computer. |
4962 | N/A | Medium | IPsec dropped an inbound packet that failed a replay check. The inbound packet had too low a sequence number to ensure it was not a replay. |
4963 | N/A | Medium | IPsec dropped an inbound clear text packet that should have been secured. This is usually due to the remote computer changing its IPsec policy without informing this computer. This could also be a spoofing attack attempt. |
4965 | N/A | Medium | IPsec received a packet from a remote computer with an incorrect Security Parameter Index (SPI). This is usually caused by malfunctioning hardware that is corrupting packets. If these errors persist, verify that the packets sent from the remote computer are the same as those received by this computer. This error may also indicate interoperability problems with other IPsec implementations. In that case, if connectivity is not impeded, then these events can be ignored. |
4976 | N/A | Medium | During Main Mode negotiation, IPsec received an invalid negotiation packet. If this problem persists, it could indicate a network issue or an attempt to modify or replay this negotiation. |
4977 | N/A | Medium | During Quick Mode negotiation, IPsec received an invalid negotiation packet. If this problem persists, it could indicate a network issue or an attempt to modify or replay this negotiation. |
4978 | N/A | Medium | During Extended Mode negotiation, IPsec received an invalid negotiation packet. If this problem persists, it could indicate a network issue or an attempt to modify or replay this negotiation. |
4983 | N/A | Medium | An IPsec Extended Mode negotiation failed. The corresponding Main Mode security association has been deleted. |
4984 | N/A | Medium | An IPsec Extended Mode negotiation failed. The corresponding Main Mode security association has been deleted. |
5027 | N/A | Medium | The Windows Firewall Service was unable to retrieve the security policy from the local storage. The service will continue enforcing the current policy. |
5028 | N/A | Medium | The Windows Firewall Service was unable to parse the new security policy. The service will continue with currently enforced policy. |
5029 | N/A | Medium | The Windows Firewall Service failed to initialize the driver. The service will continue to enforce the current policy. |
5030 | N/A | Medium | The Windows Firewall Service failed to start. |
5035 | N/A | Medium | The Windows Firewall Driver failed to start. |
5037 | N/A | Medium | The Windows Firewall Driver detected critical runtime error. Terminating. |
5038 | N/A | Medium | Code integrity determined that the image hash of a file is not valid. The file could be corrupt due to unauthorized modification or the invalid hash could indicate a potential disk device error. |
5120 | N/A | Medium | OCSP Responder Service Started |
5121 | N/A | Medium | OCSP Responder Service Stopped |
5122 | N/A | Medium | A configuration entry changed in OCSP Responder Service |
5123 | N/A | Medium | A configuration entry changed in OCSP Responder Service |
5376 | N/A | Medium | Credential Manager credentials were backed up. |
5377 | N/A | Medium | Credential Manager credentials were restored from a backup. |
5453 | N/A | Medium | An IPsec negotiation with a remote computer failed because the IKE and AuthIP IPsec Keying Modules (IKEEXT) service is not started. |
5480 | N/A | Medium | IPsec Services failed to get the complete list of network interfaces on the computer. This poses a potential security risk because some of the network interfaces may not get the protection provided by the applied IPsec filters. Use the IP Security Monitor snap-in to diagnose the problem. |
5483 | N/A | Medium | IPsec Services failed to initialize RPC server. IPsec Services could not be started. |
5484 | N/A | Medium | IPsec Services has experienced a critical failure and has been shut down. The shutdown of IPsec Services can put the computer at greater risk of network attack or expose the computer to potential security risks. |
5485 | N/A | Medium | IPsec Services failed to process some IPsec filters on a plug-and-play event for network interfaces. This poses a potential security risk because some of the network interfaces may not get the protection provided by the applied IPsec filters. Use the IP Security Monitor snap-in to diagnose the problem. |
6145 | N/A | Medium | One or more errors occurred while processing security policy in the Group Policy objects. |
6273 | N/A | Medium | Network Policy Server denied access to a user. |
6274 | N/A | Medium | Network Policy Server discarded the request for a user. |
6275 | N/A | Medium | Network Policy Server discarded the accounting request for a user. |
6276 | N/A | Medium | Network Policy Server quarantined a user. |
6277 | N/A | Medium | Network Policy Server granted access to a user but put it on probation because the host did not meet the defined health policy. |
6278 | N/A | Medium | Network Policy Server granted full access to a user because the host met the defined health policy. |
6279 | N/A | Medium | Network Policy Server locked the user account due to repeated failed authentication attempts. |
6280 | N/A | Medium | Network Policy Server unlocked the user account. |
- | 640 | Medium | General account database changed |
- | 619 | Medium | Quality of Service Policy changed |
24586 | N/A | Medium | An error was encountered converting volume |
24592 | N/A | Medium | An attempt to automatically restart conversion on volume %2 failed. |
24593 | N/A | Medium | Metadata write: Volume %2 returning errors while trying to modify metadata. If failures continue, decrypt volume |
24594 | N/A | Medium | Metadata rebuild: An attempt to write a copy of metadata on volume %2 failed and may appear as disk corruption. If failures continue, decrypt volume. |
4608 | 512 | Low | Windows is starting up. |
4609 | 513 | Low | Windows is shutting down. |
4610 | 514 | Low | An authentication package has been loaded by the Local Security Authority. |
4611 | 515 | Low | A trusted logon process has been registered with the Local Security Authority. |
4612 | 516 | Low | Internal resources allocated for the queuing of audit messages have been exhausted, leading to the loss of some audits. |
4614 | 518 | Low | A notification package has been loaded by the Security Account Manager. |
4615 | 519 | Low | Invalid use of LPC port. |
4616 | 520 | Low | The system time was changed. |
4622 | N/A | Low | A security package has been loaded by the Local Security Authority. |
4624 | 528,540 | Low | An account was successfully logged on. |
4625 | 529-537,539 | Low | An account failed to log on. |
4634 | 538 | Low | An account was logged off. |
4646 | N/A | Low | IKE DoS-prevention mode started. |
4647 | 551 | Low | User initiated logoff. |
4648 | 552 | Low | A logon was attempted using explicit credentials. |
4650 | N/A | Low | An IPsec Main Mode security association was established. Extended Mode was not enabled. Certificate authentication was not used. |
4651 | N/A | Low | An IPsec Main Mode security association was established. Extended Mode was not enabled. A certificate was used for authentication. |
4652 | N/A | Low | An IPsec Main Mode negotiation failed. |
4653 | N/A | Low | An IPsec Main Mode negotiation failed. |
4654 | N/A | Low | An IPsec Quick Mode negotiation failed. |
4655 | N/A | Low | An IPsec Main Mode security association ended. |
4656 | 560 | Low | A handle to an object was requested. |
4657 | 567 | Low | A registry value was modified. |
4658 | 562 | Low | The handle to an object was closed. |
4659 | N/A | Low | A handle to an object was requested with intent to delete. |
4660 | 564 | Low | An object was deleted. |
4661 | 565 | Low | A handle to an object was requested. |
4662 | 566 | Low | An operation was performed on an object. |
4663 | 567 | Low | An attempt was made to access an object. |
4664 | N/A | Low | An attempt was made to create a hard link. |
4665 | N/A | Low | An attempt was made to create an application client context. |
4666 | N/A | Low | An application attempted an operation: |
4667 | N/A | Low | An application client context was deleted. |
4668 | N/A | Low | An application was initialized. |
4670 | N/A | Low | Permissions on an object were changed. |
4671 | N/A | Low | An application attempted to access a blocked ordinal through the TBS. |
4672 | 576 | Low | Special privileges assigned to new logon. |
4673 | 577 | Low | A privileged service was called. |
4674 | 578 | Low | An operation was attempted on a privileged object. |
4688 | 592 | Low | A new process has been created. |
4689 | 593 | Low | A process has exited. |
4690 | 594 | Low | An attempt was made to duplicate a handle to an object. |
4691 | 595 | Low | Indirect access to an object was requested. |
4694 | N/A | Low | Protection of auditable protected data was attempted. |
4695 | N/A | Low | Unprotection of auditable protected data was attempted. |
4696 | 600 | Low | A primary token was assigned to process. |
4697 | 601 | Low | Attempt to install a service |
4698 | 602 | Low | A scheduled task was created. |
4699 | 602 | Low | A scheduled task was deleted. |
4700 | 602 | Low | A scheduled task was enabled. |
4701 | 602 | Low | A scheduled task was disabled. |
4702 | 602 | Low | A scheduled task was updated. |
4704 | 608 | Low | A user right was assigned. |
4705 | 609 | Low | A user right was removed. |
4707 | 611 | Low | A trust to a domain was removed. |
4709 | N/A | Low | IPsec Services was started. |
4710 | N/A | Low | IPsec Services was disabled. |
4711 | N/A | Low | May contain any one of the following: PAStore Engine applied locally cached copy of Active Directory storage IPsec policy on the computer. PAStore Engine applied Active Directory storage IPsec policy on the computer. PAStore Engine applied local registry storage IPsec policy on the computer. PAStore Engine failed to apply locally cached copy of Active Directory storage IPsec policy on the computer. PAStore Engine failed to apply Active Directory storage IPsec policy on the computer. PAStore Engine failed to apply local registry storage IPsec policy on the computer. PAStore Engine failed to apply some rules of the active IPsec policy on the computer. PAStore Engine failed to load directory storage IPsec policy on the computer. PAStore Engine loaded directory storage IPsec policy on the computer. PAStore Engine failed to load local storage IPsec policy on the computer. PAStore Engine loaded local storage IPsec policy on the computer.PAStore Engine polled for changes to the active IPsec policy and detected no changes. |
4712 | N/A | Low | IPsec Services encountered a potentially serious failure. |
4717 | 621 | Low | System security access was granted to an account. |
4718 | 622 | Low | System security access was removed from an account. |
4720 | 624 | Low | A user account was created. |
4722 | 626 | Low | A user account was enabled. |
4723 | 627 | Low | An attempt was made to change an account’s password. |
4725 | 629 | Low | A user account was disabled. |
4726 | 630 | Low | A user account was deleted. |
4728 | 632 | Low | A member was added to a security-enabled global group. |
4729 | 633 | Low | A member was removed from a security-enabled global group. |
4730 | 634 | Low | A security-enabled global group was deleted. |
4731 | 635 | Low | A security-enabled local group was created. |
4732 | 636 | Low | A member was added to a security-enabled local group. |
4733 | 637 | Low | A member was removed from a security-enabled local group. |
4734 | 638 | Low | A security-enabled local group was deleted. |
4738 | 642 | Low | A user account was changed. |
4740 | 644 | Low | A user account was locked out. |
4741 | 645 | Low | A computer account was changed. |
4742 | 646 | Low | A computer account was changed. |
4743 | 647 | Low | A computer account was deleted. |
4744 | 648 | Low | A security-disabled local group was created. |
4745 | 649 | Low | A security-disabled local group was changed. |
4746 | 650 | Low | A member was added to a security-disabled local group. |
4747 | 651 | Low | A member was removed from a security-disabled local group. |
4748 | 652 | Low | A security-disabled local group was deleted. |
4749 | 653 | Low | A security-disabled global group was created. |
4750 | 654 | Low | A security-disabled global group was changed. |
4751 | 655 | Low | A member was added to a security-disabled global group. |
4752 | 656 | Low | A member was removed from a security-disabled global group. |
4753 | 657 | Low | A security-disabled global group was deleted. |
4756 | 660 | Low | A member was added to a security-enabled universal group. |
4757 | 661 | Low | A member was removed from a security-enabled universal group. |
4758 | 662 | Low | A security-enabled universal group was deleted. |
4759 | 663 | Low | A security-disabled universal group was created. |
4760 | 664 | Low | A security-disabled universal group was changed. |
4761 | 665 | Low | A member was added to a security-disabled universal group. |
4762 | 666 | Low | A member was removed from a security-disabled universal group. |
4767 | 671 | Low | A user account was unlocked. |
4768 | 672,676 | Low | A Kerberos authentication ticket (TGT) was requested. |
4769 | 673 | Low | A Kerberos service ticket was requested. |
4770 | 674 | Low | A Kerberos service ticket was renewed. |
4771 | 675 | Low | Kerberos pre-authentication failed. |
4772 | 672 | Low | A Kerberos authentication ticket request failed. |
4774 | 678 | Low | An account was mapped for logon. |
4775 | 679 | Low | An account could not be mapped for logon. |
4776 | 680,681 | Low | The domain controller attempted to validate the credentials for an account. |
4777 | N/A | Low | The domain controller failed to validate the credentials for an account. |
4778 | 682 | Low | A session was reconnected to a Window Station. |
4779 | 683 | Low | A session was disconnected from a Window Station. |
4781 | 685 | Low | The name of an account was changed: |
4782 | N/A | Low | The password hash an account was accessed. |
4783 | 667 | Low | A basic application group was created. |
4784 | N/A | Low | A basic application group was changed. |
4785 | 689 | Low | A member was added to a basic application group. |
4786 | 690 | Low | A member was removed from a basic application group. |
4787 | 691 | Low | A nonmember was added to a basic application group. |
4788 | 692 | Low | A nonmember was removed from a basic application group. |
4789 | 693 | Low | A basic application group was deleted. |
4790 | 694 | Low | An LDAP query group was created. |
4793 | N/A | Low | The Password Policy Checking API was called. |
4800 | N/A | Low | The workstation was locked. |
4801 | N/A | Low | The workstation was unlocked. |
4802 | N/A | Low | The screen saver was invoked. |
4803 | N/A | Low | The screen saver was dismissed. |
4864 | N/A | Low | A namespace collision was detected. |
4869 | 773 | Low | Certificate Services received a resubmitted certificate request. |
4871 | 775 | Low | Certificate Services received a request to publish the certificate revocation list (CRL). |
4872 | 776 | Low | Certificate Services published the certificate revocation list (CRL). |
4873 | 777 | Low | A certificate request extension changed. |
4874 | 778 | Low | One or more certificate request attributes changed. |
4875 | 779 | Low | Certificate Services received a request to shut down. |
4876 | 780 | Low | Certificate Services backup started. |
4877 | 781 | Low | Certificate Services backup completed. |
4878 | 782 | Low | Certificate Services restore started. |
4879 | 783 | Low | Certificate Services restore completed. |
4880 | 784 | Low | Certificate Services started. |
4881 | 785 | Low | Certificate Services stopped. |
4883 | 787 | Low | Certificate Services retrieved an archived key. |
4884 | 788 | Low | Certificate Services imported a certificate into its database. |
4886 | 790 | Low | Certificate Services received a certificate request. |
4887 | 791 | Low | Certificate Services approved a certificate request and issued a certificate. |
4888 | 792 | Low | Certificate Services denied a certificate request. |
4889 | 793 | Low | Certificate Services set the status of a certificate request to pending. |
4891 | 795 | Low | A configuration entry changed in Certificate Services. |
4893 | 797 | Low | Certificate Services archived a key. |
4894 | 798 | Low | Certificate Services imported and archived a key. |
4895 | 799 | Low | Certificate Services published the CA certificate to Active Directory Domain Services. |
4898 | 802 | Low | Certificate Services loaded a template. |
4902 | N/A | Low | The Per-user audit policy table was created. |
4904 | N/A | Low | An attempt was made to register a security event source. |
4905 | N/A | Low | An attempt was made to unregister a security event source. |
4909 | N/A | Low | The local policy settings for the TBS were changed. |
4910 | N/A | Low | The Group Policy settings for the TBS were changed. |
4928 | N/A | Low | An Active Directory replica source naming context was established. |
4929 | N/A | Low | An Active Directory replica source naming context was removed. |
4930 | N/A | Low | An Active Directory replica source naming context was modified. |
4931 | N/A | Low | An Active Directory replica destination naming context was modified. |
4932 | N/A | Low | Synchronization of a replica of an Active Directory naming context has begun. |
4933 | N/A | Low | Synchronization of a replica of an Active Directory naming context has ended. |
4934 | N/A | Low | Attributes of an Active Directory object were replicated. |
4935 | N/A | Low | Replication failure begins. |
4936 | N/A | Low | Replication failure ends. |
4937 | N/A | Low | A lingering object was removed from a replica. |
4944 | N/A | Low | The following policy was active when the Windows Firewall started. |
4945 | N/A | Low | A rule was listed when the Windows Firewall started. |
4946 | N/A | Low | A change has been made to Windows Firewall exception list. A rule was added. |
4947 | N/A | Low | A change has been made to Windows Firewall exception list. A rule was modified. |
4948 | N/A | Low | A change has been made to Windows Firewall exception list. A rule was deleted. |
4949 | N/A | Low | Windows Firewall settings were restored to the default values. |
4950 | N/A | Low | A Windows Firewall setting has changed. |
4951 | N/A | Low | A rule has been ignored because its major version number was not recognized by Windows Firewall. |
4952 | N/A | Low | Parts of a rule have been ignored because its minor version number was not recognized by Windows Firewall. The other parts of the rule will be enforced. |
4953 | N/A | Low | A rule has been ignored by Windows Firewall because it could not parse the rule. |
4954 | N/A | Low | Windows Firewall Group Policy settings have changed. The new settings have been applied. |
4956 | N/A | Low | Windows Firewall has changed the active profile. |
4957 | N/A | Low | Windows Firewall did not apply the following rule: |
4958 | N/A | Low | Windows Firewall did not apply the following rule because the rule referred to items not configured on this computer: |
4979 | N/A | Low | IPsec Main Mode and Extended Mode security associations were established. |
4980 | N/A | Low | IPsec Main Mode and Extended Mode security associations were established. |
4981 | N/A | Low | IPsec Main Mode and Extended Mode security associations were established. |
4982 | N/A | Low | IPsec Main Mode and Extended Mode security associations were established. |
4985 | N/A | Low | The state of a transaction has changed. |
5024 | N/A | Low | The Windows Firewall Service has started successfully. |
5025 | N/A | Low | The Windows Firewall Service has been stopped. |
5031 | N/A | Low | The Windows Firewall Service blocked an application from accepting incoming connections on the network. |
5032 | N/A | Low | Windows Firewall was unable to notify the user that it blocked an application from accepting incoming connections on the network. |
5033 | N/A | Low | The Windows Firewall Driver has started successfully. |
5034 | N/A | Low | The Windows Firewall Driver has been stopped. |
5039 | N/A | Low | A registry key was virtualized. |
5040 | N/A | Low | A change has been made to IPsec settings. An Authentication Set was added. |
5041 | N/A | Low | A change has been made to IPsec settings. An Authentication Set was modified. |
5042 | N/A | Low | A change has been made to IPsec settings. An Authentication Set was deleted. |
5043 | N/A | Low | A change has been made to IPsec settings. A Connection Security Rule was added. |
5044 | N/A | Low | A change has been made to IPsec settings. A Connection Security Rule was modified. |
5045 | N/A | Low | A change has been made to IPsec settings. A Connection Security Rule was deleted. |
5046 | N/A | Low | A change has been made to IPsec settings. A Crypto Set was added. |
5047 | N/A | Low | A change has been made to IPsec settings. A Crypto Set was modified. |
5048 | N/A | Low | A change has been made to IPsec settings. A Crypto Set was deleted. |
5050 | N/A | Low | An attempt to programmatically disable the Windows Firewall using a call to InetFwProfile.FirewallEnabled(False) |
5051 | N/A | Low | A file was virtualized. |
5056 | N/A | Low | A cryptographic self test was performed. |
5057 | N/A | Low | A cryptographic primitive operation failed. |
5058 | N/A | Low | Key file operation. |
5059 | N/A | Low | Key migration operation. |
5060 | N/A | Low | Verification operation failed. |
5061 | N/A | Low | Cryptographic operation. |
5062 | N/A | Low | A kernel-mode cryptographic self test was performed. |
5063 | N/A | Low | A cryptographic provider operation was attempted. |
5064 | N/A | Low | A cryptographic context operation was attempted. |
5065 | N/A | Low | A cryptographic context modification was attempted. |
5066 | N/A | Low | A cryptographic function operation was attempted. |
5067 | N/A | Low | A cryptographic function modification was attempted. |
5068 | N/A | Low | A cryptographic function provider operation was attempted. |
5069 | N/A | Low | A cryptographic function property operation was attempted. |
5070 | N/A | Low | A cryptographic function property modification was attempted. |
5125 | N/A | Low | A request was submitted to the OCSP Responder Service |
5126 | N/A | Low | Signing Certificate was automatically updated by the OCSP Responder Service |
5127 | N/A | Low | The OCSP Revocation Provider successfully updated the revocation information |
5136 | 566 | Low | A directory service object was modified. |
5137 | 566 | Low | A directory service object was created. |
5138 | N/A | Low | A directory service object was undeleted. |
5139 | N/A | Low | A directory service object was moved. |
5140 | N/A | Low | A network share object was accessed. |
5141 | N/A | Low | A directory service object was deleted. |
5152 | N/A | Low | The Windows Filtering Platform blocked a packet. |
5153 | N/A | Low | A more restrictive Windows Filtering Platform filter has blocked a packet. |
5154 | N/A | Low | The Windows Filtering Platform has permitted an application or service to listen on a port for incoming connections. |
5155 | N/A | Low | The Windows Filtering Platform has blocked an application or service from listening on a port for incoming connections. |
5156 | N/A | Low | The Windows Filtering Platform has allowed a connection. |
5157 | N/A | Low | The Windows Filtering Platform has blocked a connection. |
5158 | N/A | Low | The Windows Filtering Platform has permitted a bind to a local port. |
5159 | N/A | Low | The Windows Filtering Platform has blocked a bind to a local port. |
5378 | N/A | Low | The requested credentials delegation was disallowed by policy. |
5440 | N/A | Low | The following callout was present when the Windows Filtering Platform Base Filtering Engine started. |
5441 | N/A | Low | The following filter was present when the Windows Filtering Platform Base Filtering Engine started. |
5442 | N/A | Low | The following provider was present when the Windows Filtering Platform Base Filtering Engine started. |
5443 | N/A | Low | The following provider context was present when the Windows Filtering Platform Base Filtering Engine started. |
5444 | N/A | Low | The following sublayer was present when the Windows Filtering Platform Base Filtering Engine started. |
5446 | N/A | Low | A Windows Filtering Platform callout has been changed. |
5447 | N/A | Low | A Windows Filtering Platform filter has been changed. |
5448 | N/A | Low | A Windows Filtering Platform provider has been changed. |
5449 | N/A | Low | A Windows Filtering Platform provider context has been changed. |
5450 | N/A | Low | A Windows Filtering Platform sublayer has been changed. |
5451 | N/A | Low | An IPsec Quick Mode security association was established. |
5452 | N/A | Low | An IPsec Quick Mode security association ended. |
5456 | N/A | Low | PAStore Engine applied Active Directory storage IPsec policy on the computer. |
5457 | N/A | Low | PAStore Engine failed to apply Active Directory storage IPsec policy on the computer. |
5458 | N/A | Low | PAStore Engine applied locally cached copy of Active Directory storage IPsec policy on the computer. |
5459 | N/A | Low | PAStore Engine failed to apply locally cached copy of Active Directory storage IPsec policy on the computer. |
5460 | N/A | Low | PAStore Engine applied local registry storage IPsec policy on the computer. |
5461 | N/A | Low | PAStore Engine failed to apply local registry storage IPsec policy on the computer. |
5462 | N/A | Low | PAStore Engine failed to apply some rules of the active IPsec policy on the computer. Use the IP Security Monitor snap-in to diagnose the problem. |
5463 | N/A | Low | PAStore Engine polled for changes to the active IPsec policy and detected no changes. |
5464 | N/A | Low | PAStore Engine polled for changes to the active IPsec policy, detected changes, and applied them to IPsec Services. |
5465 | N/A | Low | PAStore Engine received a control for forced reloading of IPsec policy and processed the control successfully. |
5466 | N/A | Low | PAStore Engine polled for changes to the Active Directory IPsec policy, determined that Active Directory cannot be reached, and will use the cached copy of the Active Directory IPsec policy instead. Any changes made to the Active Directory IPsec policy since the last poll could not be applied. |
5467 | N/A | Low | PAStore Engine polled for changes to the Active Directory IPsec policy, determined that Active Directory can be reached, and found no changes to the policy. The cached copy of the Active Directory IPsec policy is no longer being used. |
5468 | N/A | Low | PAStore Engine polled for changes to the Active Directory IPsec policy, determined that Active Directory can be reached, found changes to the policy, and applied those changes. The cached copy of the Active Directory IPsec policy is no longer being used. |
5471 | N/A | Low | PAStore Engine loaded local storage IPsec policy on the computer. |
5472 | N/A | Low | PAStore Engine failed to load local storage IPsec policy on the computer. |
5473 | N/A | Low | PAStore Engine loaded directory storage IPsec policy on the computer. |
5474 | N/A | Low | PAStore Engine failed to load directory storage IPsec policy on the computer. |
5477 | N/A | Low | PAStore Engine failed to add quick mode filter. |
5479 | N/A | Low | IPsec Services has been shut down successfully. The shutdown of IPsec Services can put the computer at greater risk of network attack or expose the computer to potential security risks. |
5632 | N/A | Low | A request was made to authenticate to a wireless network. |
5633 | N/A | Low | A request was made to authenticate to a wired network. |
5712 | N/A | Low | A Remote Procedure Call (RPC) was attempted. |
5888 | N/A | Low | An object in the COM+ Catalog was modified. |
5889 | N/A | Low | An object was deleted from the COM+ Catalog. |
5890 | N/A | Low | An object was added to the COM+ Catalog. |
6008 | N/A | Low | The previous system shutdown was unexpected |
6144 | N/A | Low | Security policy in the Group Policy objects has been applied successfully. |
6272 | N/A | Low | Network Policy Server granted access to a user. |
N/A | 561 | Low | A handle to an object was requested. |
N/A | 563 | Low | Object open for delete |
N/A | 625 | Low | User Account Type Changed |
N/A | 613 | Low | IPsec policy agent started |
N/A | 614 | Low | IPsec policy agent disabled |
N/A | 615 | Low | IPsec policy agent |
N/A | 616 | Low | IPsec policy agent encountered a potential serious failure |
24577 | N/A | Low | Encryption of volume started |
24578 | N/A | Low | Encryption of volume stopped |
24579 | N/A | Low | Encryption of volume completed |
24580 | N/A | Low | Decryption of volume started |
24581 | N/A | Low | Decryption of volume stopped |
24582 | N/A | Low | Decryption of volume completed |
24583 | N/A | Low | Conversion worker thread for volume started |
24584 | N/A | Low | Conversion worker thread for volume temporarily stopped |
24588 | N/A | Low | The conversion operation on volume %2 encountered a bad sector error. Please validate the data on this volume |
24595 | N/A | Low | Volume %2 contains bad clusters. These clusters will be skipped during conversion. |
24621 | N/A | Low | Initial state check: Rolling volume conversion transaction on %2. |
5049 | N/A | Low | An IPsec Security Association was deleted. |
5478 | N/A | Low | IPsec Services has started successfully. |