Having issues outputting to a csv file. Script runs fine, but information within is truncated.
So instead of looking like
Text
"User" [EX:/o=Domain/ou=Address..."
Text
"Microsoft.Exchange.Data.Storage.Management.ADRecipientOrAddress[]"
Anyone have any thoughts on how to fix?
I omitted company/user specific info on the top portion. Just an FYI, user, domain and address are generic placeholders.If necessary, here is the script given to us yesterday from some helpful members:
Thanks in advance. Learning Powershell while working with it - fun.
Powershell
$Results=foreach($min(Get-Mailbox-ResultSizeUnlimited)){Get-InboxRule-Mailbox$m.DistinguishedName|Where-Object{$_.ReDirectTo}|Select-ObjectMailboxOwnerID,Name,RedirectTo}$Results|Export-Csv-PathC:\InboxRules.csv-NoTypeInformation
Thanks in advance. Learning Powershell while working with it - fun.