I have a SharePoint (2010) web application that is set up with claims based authentication, with two claims providers (Azure ACS and ADFS). From SP Central Admin -> Manage Web Applications -> User Policy -> Add Users, I'm able to search for users in the different identity providers (I believe the control is called "People Picker").
Is it possible to use a similar functionality to that of the people picker in PowerShell?
In principle, what I need is something like this:
$claim = Resolve-Claim "[email protected]"
which would return the "fully qualified" user name (including the claims prefix), e.g. i:05.t|acs|[email protected], by searching all the claims providers that is added to SharePoint.
Is this possible? Or at least, is it possible to enumerate the claims providers, and search on each individually (that is also acceptable)?