Public/Install-CheckIDPasswordAgentLogging.ps1

<#
.DESCRIPTION
    Retained for backwards compatibility. The module now writes directly to the Application event log, so no event source installation is required.

.SYNOPSIS
    Retained for backwards compatibility. No event log installation is required.

.EXAMPLE
    # Run as administrator
    Install-CheckIDPasswordAgentLogging
#>

function Install-CheckIDPasswordAgentLogging {
    [CmdletBinding()]

    Param()

    Process {
        Write-Verbose "CheckIDPasswordAgent writes directly to the Application event log. No installation is required."
    }
}