Posted On December 29, 2020

How to Calculate Logging Storage

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How to Calculate Logging Storage
The Simple Formula:
Storage in Gigabytes = Number of Events x (Average Bytes per Event / Bytes to GiB conversion factor)
  • Bytes to GiB conversion factor: 1073741824
  • Average for Windows security events: 200 bytes
  • Average for highly complex database event: 1500 bytes
  • Average for mixed type events (database & security): 650 bytes

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Add Accounts into Local Administrators Group

# addAccountToLocalAdmins.ps1# Requires: PowerShell Version 4.0+$accountToAdd='ServerAdmins'$groupName="Administrators"$servers=@( "CONCU1", 'CONCU2', 'CONCU100', 'CONCU80665', 'CONCU6547354', 'CONWHAT989', 'CONCU3')$servers|%{ $session=new-pssession $_…

How to Restore Deleted Active Directory objects

The manual process via LDP by MicrosoftStep 1: Locate the deleted objectrun LDP using a…

How to Set PowerShell Window and Prompt Title or Label

Have you ever wondered about changing the boring PS C:\Windows\system32> whenever a new window is…