简体   繁体   中英

Get Maximum Log Size

I need get the Maximum Log Size from System Events (eventvwr.msc) in Windows >= 2003 through CMD.

I try with "reg query HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Eventlog\\Security\\ /v MaxSize" but I need only the value and decimal. With wevtutil only works in Windows 2008.

Please, I searched and find nothing, I know that is complicated, but I have them faith.

Thanks!

for /f "skip=2 tokens=3" %A in ('Reg query "HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\Security" /v MaxSize') do set doc=%A

是如何从注册表中读取内容。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM