我正在运行Windows 2003,我希望在特定时间...下午12:06之后获取事件列表。我怎么才能获得当时的那些活动?我试过这个:
powershell get-eventlog application -after "3/15/2013 12:06:00 pm"
但是我收到了一个错误:
Cannot bind parameter 'InstanceId....
答案 0 :(得分:10)
这有效:
powershell -command "get-eventlog application -after ([datetime]'3/15/2013 12:06:00 pm')"