イベントログにメッセージを出力するPowerShellからPS> New-EventLog –LogName Application –Source “mytest01” PS> Write-EventLog -LogName Application -Source mytest01 -EntryType Information -EventId 1 -Message "hello, world" コマンドプロンプトからCMD> eventcreate.exe /id 100 /l system /t information /so cmd /d "hello, world" |
|