Setting Access Request for SharePoint 2013/2016
Published May 15 2019 03:23 PM 564 Views

First published on TECHNET on Mar 29, 2018
Hey Guys,

Took a quick look and figured how to set Access Request for all Site Collections, the script is provided AS-IS and should be considered a sample.

While I have some error checking and extra logic in there you will probably want to add your own in there.
Add-PSSnapin Microsoft.SharePoint.PowerShell
$DefaultEmail = " admin@weaver.ad "
Get-SPSite | ForEach-object {
$OwnerEmail = $null
$OwnerEmail = $_.Owner.Email
if($OwnerEmail -eq $null)
{
$OwnerEmail = $DefaultEmail
}
$_.AllWebs | ForEach-Object {
if(!$_.RequestAccessEnabled)
{
$_.RequestAccessEmail = $OwnerEmail
}
}
}
Pax

Version history
Last update:
‎Apr 29 2020 09:34 AM
Updated by: