Weekly Tip 70

Redirect Event Logs

There could be many reasons why you need to redirect event logs to another location. For this example, I’m going to redirect them to C:\EventLogs. They are, by default located at C:\Windows\System32\winevt\Logs.

First, you need the directory in place (not a mandatory requirement, but I like things clean). You can create the directory by hand, with PowerShell, or anything else. I prefer PowerShell. Here’s the commands that I used, which builds the directory, hides it, and sets it as a system directory:

$dir = new-item -type directory C:\EventLogs

$dir.attributes=”Hidden,System”

Next, to prevent users from modifying the directory, we need to set some ACLs. I just grab the ACLs from the current directory (C:\Windows\System32\winevt\Logs) and set it on the new directory. The second line disables inheritance in the ACL, which is important so that the directory doesn’t get rules from C:.

$acl = get-acl “C:\Windows\System32\winevt\Logs”

$acl.SetAccessRuleProtection($true,$true)

set-acl “C:\EventLogs” $acl

Finally, we need to create a GPO to move the log locations. The policies you are looking for are at Computer Configuration > Policies > Administrative Templates > Windows Components > Event Log Service. There are four folders here, one for each log. You need to enable the “Control the location of the log file” setting in each folder and set it to your new location.

Capture

Disclaimer

All content provided on this blog is for information purposes only. Windows Management Experts, Inc makes no representation as to accuracy or completeness of any information on this site. Windows Management Experts, Inc will not be liable for any errors or omission in this information nor for the availability of this information. It is highly recommended that you consult one of our technical consultants, should you need any further assistance.

Share:

Facebook
Twitter
LinkedIn
Picture of Matt Tinney

Matt Tinney

Professional IT executive & business leader having decades of experience with Microsoft technologies delivering modern-day cloud & security solutions.

Contact Us

=
On Key

More Posts

WME Cybersecurity Briefings No. 020
Cyber Security

WME Security Briefing 26 July 2024

Pro-Houthi Group Targets Yemen Aid Organizations with Android Spyware Overview A suspected pro-Houthi group, OilAlpha, is targeting humanitarian organizations in Yemen with advanced Android spyware. The operation is associated with the activity cluster codenamed OilAlpha. It

Read More »
WME Cybersecurity Briefings No. 019
Cyber Security

WME Security Briefing 23 July 2024

Samba File Shares Targeted by DarkGate Malware in Recent Cyber Offensive Overview Recent investigations by Palo Alto Networks uncover a brief but significant cyberattack campaign utilizing DarkGate malware. This malicious software exploited Samba file shares to

Read More »
WME Cybersecurity Briefings No. 018
Cyber Security

WME Security Briefing 15 July 2024

OVHcloud Mitigates Record-Breaking 840 Million PPS DDoS Attack Overview In April 2024, OVHcloud, a top French cloud computing firm, successfully stopped a massive DDoS attack. The attack hit a record-breaking rate of 840 million packets per second

Read More »
E-Commerce Security - Solutions for Online Retailers
Azure

E-commerce Security – Solutions for Online Retailers

Today’s hyper-charged e-commerce landscape demands top-notch cybersecurity measures. Cybersecurity for this bustling sector isn’t just about ticking a technical box; it’s the cornerstone of building trust. As businesses and consumers flock to the online space, the

Read More »
Be assured of everything

Get WME Services

Stay ahead of the competition with our Professional IT offerings.

=