You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
The EventLog script can do the following steps to get the logs associated with the requests in a Fiddler trace:
Open "raw" folder in the Fiddler .saz file, find all <sessid#>_c.txt files
Locate the client requests to ADFS (parse the requests for URLs containing "adfs/ls")
Pull out the "client-request-id" query string parameter (might need to also look in _s.txt in the case where the server returns the ID, but the client never redirects with it)
Send the correlation ID to Get-ADFSEvents to collect the events associated with the current request
Repeat 1-4 for each independent correlation ID that gets discovered (as a Fiddler trace could contain multiple requests)
The current script should be altered to include a -FiddlerTrace parameter, which takes the filepath to the Fiddler trace.
Fiddler captures HTTP requests and saves a set of files that can be parsed. Details on Fiddler serialization
The EventLog script can do the following steps to get the logs associated with the requests in a Fiddler trace:
The current script should be altered to include a -FiddlerTrace parameter, which takes the filepath to the Fiddler trace.
An example execution would be:
Get-ADFSEvents -Logs Security, Admin, Debug -FiddlerTrace c:\fiddlerTrace.saz -Server *
The text was updated successfully, but these errors were encountered: