Reputation: 1073
Recently used IISCrypto to disable protocols less than TLS 1.2 on the IIS web server. Starting to see numerous SCHANNEL errors in the event log like so:
A fatal error occurred while creating an SSL client credential. The internal error state is 10013.
How do you determine which app is logging this error?
Upvotes: 1
Views: 6351
Reputation: 2303
The event log gives you the process ID. Open the event in question and go to the Details tab. Expand the System
element, then the Execution
element. Under that you should see a ProcessID
attribute. Make a note of the value.
Open Task Manager and go to the Details tab. Find your process ID (PID) in the list and look at the Name column to get the corresponding process name.
Upvotes: 1