Jump to content

Office 365 - get-addressbookpolicy addresslists chopped off


Recommended Posts

Posted

Hello,

 

I want to see what address lists are in an address book policy. I have run the below command but it has omitted and chopped off some of the lists so it fits in the powershell window. How would I view the complete list of address lists please?

 

Get-AddressBookPolicy -Identity "Address Policy" | FL AddressLists

 

Thanks

Posted

Could you use the Out-File command to get this out into a file. If still getting cropped the -width switch would allow you to specify how wide the column was.

 

Get-AddressBookPolicy -Identity "Policy" | fl AddressLists | Out-File c:\file.text -width 120

Posted
Thanks, but even if i set the width to a really high number its still not displaying all the address lists in the policy.
Posted (edited)
even if I set the width to a really high number it's still not displaying all the address lists in the policy.

Does this work?

 

Get-AddressBookPolicy -Identity "Address Policy" | FL AddressLists -AutoSize

 

Setting the width on Out-File won't make any difference if the text is being truncated the preceding command(s).

Edited by Arthur
Posted
Does this work?

 

Get-AddressBookPolicy -Identity "Address Policy" | FL AddressLists -AutoSize

 

Setting the width on Out-File won't make any difference if the text is being truncated the preceding command(s).

 

That doesn't make a difference either.

 

Do you get .....'s in the reply or is it just missing them completely?

 

I get the ....

Posted

Got it.

 

I ran the below. Then ran the original command again

 

PS > $FormatEnumerationLimit
PS > $FormatEnumerationLimit=-1

Posted
Got it.

I see what you mean now I've just tried it. :)

 

The other way to do it would be...

 

Get-AddressBookPolicy -Identity "Address Policy" | Select-Object -ExpandProperty AddressLists

  • Thanks 2

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...