Can ADGuardHome run independently without relying on Windows logs? #6218
-
I used some scripts that prohibit Windows from generating logs, such as the following: ` echo off set "key=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\EventLog-System" ` Afterwards, ADGuardHome seemed to be unable to function, and starting ADGuardHome in a Windows service would prompt 'Error 1067'. Is there any way to enable ADGuardHome to start independently without relying on Windows logs or related services? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
When using the "adguardhome.exe - s run" command, it will prompt:cannot initialize syslog: The interface is unknown.It's really a bit embarrassing... |
Beta Was this translation helpful? Give feedback.
-
Out of curiosity, why have you disabled Windows event logging? |
Beta Was this translation helpful? Give feedback.
-
Just tested in the virtual machine. Simply change the value of "Start" on the right side of [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\EventLog-System] to 1. However, after looking at ADGuardHome and other software under [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\EventLog\Application], I found that ADGuardHome calls %SystemRoot%\System32\EventCreate.exe to record logs. In fact, I think calling its own VMware\vmeventmsg.dll like VMWare is also a very good solution. I wonder if ADGuardHome will make such adjustments in the future... |
Beta Was this translation helpful? Give feedback.
Just tested in the virtual machine. Simply change the value of "Start" on the right side of [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\EventLog-System] to 1.
However, after looking at ADGuardHome and other software under [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\EventLog\Application], I found that ADGuardHome calls %SystemRoot%\System32\EventCreate.exe to record logs. In fact, I think calling its own VMware\vmeventmsg.dll like VMWare is also a very good solution. I wonder if ADGuardHome will make such adjustments in the future...