The Easiest Way to Save and Share Code Snippets on the web

#PowerShell #Exchange2010 #Exchange2007 SendOnBehalfOf Report

powershell | by: vojinle

posted: Jan, 24th 2012 | jump to bottom

Get-Mailbox -ResultSize unlimited | ?{$_.GrantSendOnBehalfTo} | %{ 
	foreach ($user in $_.GrantSendOnBehalfTo) 
		{ 
			$_ | select name, @{n='User';e={$user}}
		}
	} | export-csv -not SendOnBehalf.csv; ii SendOnBehalf.csv
76 views