Forum Discussion
Carlos Gomez
Aug 31, 2017Brass Contributor
Get all users subscribed to the self-service password reset service
Hi, Is there a way to get the list of users already subscribed for the SSPR or the ones that are still not joined to the service? Regards.
- Aug 31, 2017You are correct, I recently ran into this same issue with one of my clients.
This is just another example of needing to fully understand the capabilities and limitations of the tools while trying to keep up with the changes.
I would not be surprised to see these limits increased in the future.
Satyavrat Mishra
Jun 26, 2018Copper Contributor
You can try below powershell script to get the SSPR registered users:
Get-Msoluser -All | where {$_.StrongAuthenticationUserDetails -ne $null} | Export-CSV -path <path to CSV file>
JonasBack
Dec 04, 2018Iron Contributor
That indeed shows which users that have registered for MFA. But is this the same as SSPR? In any way, in the new Converged registration for SSPR and MFA, this might all be the same.