PowerShell - Como ativar o loglog de eventos do Windows CAPI2?

2

Eu quero ativar o log de eventos CAPI2 (microsoft / windows / capi2) com o PowerShell. Como posso ativar o log de eventos CAPI2?

Eu não tenho uma solução com o PowerShell. Mas tenho certeza que existe uma solução com o PowerShell!

Muito obrigado antecipadamente!

    
por LaPhi 10.04.2015 / 13:02

1 resposta

3

Como ativar logs de eventos usando Windows PowerShell :

To enable it we create a new EventLogConfiguration object and pass it the name of the log we want to configure. We enable it and save the changes.

Exemplo modificado deste artigo:

$logName = 'Microsoft-Windows-CAPI2/Operational'

$log = New-Object System.Diagnostics.Eventing.Reader.EventLogConfiguration $logName
$log.IsEnabled = $true
$log.SaveChanges()

Usando o cmdlet nativo do PowerShell:

$EventLog = Get-WinEvent -ListLog 'Microsoft-Windows-CAPI2/Operational'
$EventLog.IsEnabled = $true
$EventLog.SaveChanges()
    
por 10.04.2015 / 14:06