Good day,
I used the command below to write a windows event log:
Write-EventLog "Application" "Desktop Window Manager" "1113" "Information" "TEST" -Category ""
but, the output is:
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
The description for Event ID 1113 from source Desktop Window Manager cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
If the event originated on another computer, the display information had to be saved with the event.
The following information was included with the event:
TEST
the message resource is present but the message is not found in the string/message table
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
how can i prevent it to display the message like this?
Thank you in advance!