Guest User

Untitled

a guest
May 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. Add-PSSnapin Microsoft.SharePoint.PowerShell
  2.  
  3. Get-SPSite -Limit All | ? { -not $_.IsReadLocked } | % {
  4. $_.RootWeb.RequestAccessEmail = $site.Owner.Email
  5. $_.RootWeb.RequestAccessEnabled = $true
  6. $_.RootWeb.Update()
  7. }
Add Comment
Please, Sign In to add comment