When attempting to set the credentials on a SharePoint site with the DocuSign feature activated I get the warning:
"WARNING: More results were found in Get-SPSite but were not returned. Use 'Limit -ALL' to return all possible results."
The regex match will only iterate through 20 objects at a time, and I have around 60 sites. Where should I add "-Limit ALL' in the PowerShell so that it sill iterate through all my sites instead of just the top alphabetical 20?
Get-SPSite | ForEach-Object {
if ( [RegEx]::IsMatch($_.Url, $regEx) ) {
$url = $_.Url
write-host " $url"
}
}