I want to find the IIS and web application error code 500 (or 500 Series) from the list of XML files in a directory.
I'm using command prompt (with command findstr
) to go through list of XML files in that directory. However, unable to find any. Is there anything I'm doing wrong? I'm not sure which particular command to use for this particular XML files.
The command I am using is: findstr /s /i HttpStatus 500 *.*
What is the exact command parameters I should give to find error code 500 from these list of XML files? Or is there any other possible ways to get this?