list of Live ID users?
-
2012년 8월 10일 금요일 오후 5:15
Is there a way to get a view of all of the users that have been granted access to SharePoint? I am looking for this solution to work in the hosted version O365 SharePoint 2010.
Thanks!
모든 응답
-
2012년 8월 10일 금요일 오후 5:33
I'm not as familiar with the hosted version of SharePoint, however, if I was asked to do this in regular sharepoint I can think of two ways... assuming you are looking for a list of names and not the various permission levels assigned.
First would be to expose the User Information List (UIL) by changing the Hidden flag, here's how to do it in PowerShell: http://iedaddy.com/2011/05/sharepoint-2010-exposing-the-user-information-list/
Relevant code being this:
$WebUrl = "http://sharepoint" $ListName = "User Information List" $OpenWeb = Get-SPWeb $WebUrl $List = $OpenWeb.Lists[$ListName] $List.Hidden = $false $List.Update()
If this doesn't work, I believe using the User Profile Service (UPS) to read the information and dump to the console or file would work. Here's an article for accessing and in this case updating the UPS properties, but you can change the code to write out rather than update.... http://iedaddy.com/2010/06/sharepoint-2010-updating-user-profile-properties-with-powershell/
- 답변으로 제안됨 RobertSm 2012년 8월 10일 금요일 오후 7:51
- 답변으로 표시됨 Rock Wang– MSFT 2012년 8월 16일 목요일 오전 10:37

