Skip to main content
Azure

Blog 1

· One min read

Heading 2

Heading 3

caution

Callout

# PowerShell

$DisabledDelveUsers = Get-EXORecipient -ResultSize 50000 -Filter "CustomAttribute3 -like '*delve_disabled*'"

$DisabledDelveUsers | foreach-object{

$Null = Add-AzTableRow -Table $TableObject -RowKey $_.ExternalDirectoryObjectId -PartitionKey 'DisableDelve' -property @{DelveDisabled = $true; PrimarySmtpAddress = $_.PrimarySmtpAddress }

}

Column 2

Column 1