我想从安全
中仅导出事件ID 4624下面的代码从安全中导出所有事件(我只想要4624);
WEVTUtil query-events Security /rd:true /format:text > %~dp0Logins.txt /q:"<EventID>4624</EventID>"
当导出所有4624个事件时,我想要仅过滤事件:
<Data Name='LogonProcessName'>User32 </Data>
这将是带有IP的RDP日志,因为登录&#34; Microsoft-Windows-TerminalServices-RemoteConnectionManager / Operational&#34;没有IP(只有用户名):(我听说这是因为RDP连接是TLS安全的......
答案 0 :(得分:2)
Event ID 4624
WEVTUtil query-events Security /rd:true /format:text > "%~dp0Logins.txt"<EventID>4624</EventID>"
/q
选项使用了错误的格式。
使用以下命令行:
wevtutil qe Security "/q:*[System [(EventID=4648)]]" /rd:true /f:text > "%~dp0Logins.txt"
Event ID 4624
包含User32
?当导出所有4624个事件时,我想要仅过滤事件:
<Data Name='LogonProcessName'>User32 </Data>
使用以下命令行:
wevtutil qe Security "/q:*[System [(EventID=4648)]]" /rd:true | findstr User32 >nul && wevtutil qe Security "/q:*[System [(EventID=4648)]]" /f:text /rd:true > "%~dp0Logins.txt"
基于以下源链接的代码。
来源How to use wevtutil command to get event details if it only comply with specific text or word