Quantcast
Channel: Microsoft Online: SharePoint Online forum
Viewing all articles
Browse latest Browse all 10096

Find OneDrive Provisioned Users missing from ADgroup

$
0
0

There is a way to look up users who have a provisioned with the Get-SPOSite -IncludePersonalSite parameter.

But I'm trying to find a way to see which of my users do not already have a PersonalSite provisioned to prep for our OneDrive Deployment. Would like to use a specific AD Group and see if they have a PS site already created.

I'm obviously missing something since the below code returns all users, not the users that don't have a Personal site.

$SPOMembers = (Get-SPOSite -IncludePersonalSite $true -Template "SPSPERS#10" -Limit All).Owner
foreach ($item in $SPOMembers)
{
  Get-ADGroupMember myADgroup -Recursive | ForEach-Object {get-aduser $_.SamAccountName} | 
  Where-Object { $_.UserPrincipalName -ne $item } 
}


Viewing all articles
Browse latest Browse all 10096

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>