From 2a43541fcf347af406c59af0f75ccf8c63beefc7 Mon Sep 17 00:00:00 2001 From: Fabian Date: Mon, 29 Mar 2021 21:47:02 +0200 Subject: [PATCH] Update README.md I propose resizing the log files to a more sane 4GB instead of 4MB. Beginning with 4MB will cause the loss of lots of log files when event collection is enabled for the first time. --- windows-event-channels/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows-event-channels/README.md b/windows-event-channels/README.md index fc3b23f..1fce8af 100644 --- a/windows-event-channels/README.md +++ b/windows-event-channels/README.md @@ -120,7 +120,7 @@ wevtutil im C:\windows\system32\CustomEventChannels.man ``` $xml = wevtutil el | select-string -pattern "WEC" foreach ($subscription in $xml) { - wevtutil sl $subscription /ms:4194304 + wevtutil sl $subscription /ms:4294967296 } ```