Abra as propriedades da Visualização personalizada, selecione Editar filtro e, em seguida, mude para a guia XML e copie o filtro.
AgoravocêpodeusarofiltrocomoPowerShell,assim:
[xml]$CustomView=@"
<QueryList>
<Query Id="0" Path="Application">
<Select Path="Application">*[System[(Level=2 or Level=3) and ( (EventID >= 1000 and EventID <= 2000) )]]</Select>
</Query>
</QueryList>
"@
Get-WinEvent -FilterXML $CustomView | Export-CSV "C:\LogFiles\CustomView_$(Get-Date -format "yyyy-MM-DD").log"
Configure uma tarefa agendada para executar um script como o acima, toda semana