Comments on: Help Test V1.02 of the Office 365 Groups Report Script https://practical365.com/help-test-v1-02-office-365-groups-report-script/ Practical Office 365 News, Tips, and Tutorials Mon, 31 May 2021 08:59:11 +0000 hourly 1 https://wordpress.org/?v=6.3.2 By: Chris Cox https://practical365.com/help-test-v1-02-office-365-groups-report-script/#comment-156644 Thu, 21 Dec 2017 06:12:06 +0000 https://www.practical365.com/?p=38858#comment-156644 In reply to Chris Cox.

UPDATE: set -ResultSize Unlimited under “Retrieve current list of Groups”

…..@(Get-UnifiedGroup -ResultSize Unlimited |……

]]>
By: Chris Cox https://practical365.com/help-test-v1-02-office-365-groups-report-script/#comment-156643 Thu, 21 Dec 2017 05:16:28 +0000 https://www.practical365.com/?p=38858#comment-156643 We have a large number of groups I receive when running the script:

WARNING: By default, only the first 1000 items are returned. Use the ResultSize parameter to specify the number of items returned. To return all items, specify “-ResultSize Unlimited”. Be aware that, depending on th
e actual number of items, returning all items can take a long time and consume a large amount of memory. Also, we don’t recommend storing the results in a variable. Instead, pipe the results to another task or scrip
t to perform batch changes.

]]>
By: Rajesh https://practical365.com/help-test-v1-02-office-365-groups-report-script/#comment-156105 Wed, 15 Nov 2017 20:00:06 +0000 https://www.practical365.com/?p=38858#comment-156105 Hello Paul,

Do you have a script to find AzureAD Synced users who are not member of a specific group ?

]]>
By: Paul Cunningham https://practical365.com/help-test-v1-02-office-365-groups-report-script/#comment-99166 Fri, 16 Jun 2017 00:42:45 +0000 https://www.practical365.com/?p=38858#comment-99166 In reply to Craig.

Yeah, the solution is to hard code the SMTP server into the XML config file we provide, so the script will just use that instead of trying to find it in DNS.

]]>
By: Craig https://practical365.com/help-test-v1-02-office-365-groups-report-script/#comment-99142 Thu, 15 Jun 2017 22:18:57 +0000 https://www.practical365.com/?p=38858#comment-99142 In reply to Craig.

Actually, I take that back, GetHostAddresses isn’t quite the same in your context. As you’re retrieving the MX record. (should have looked at the code before I posted).

A quick google suggests there isn’t a simple solution for Win 7 and older.

]]>
By: Craig https://practical365.com/help-test-v1-02-office-365-groups-report-script/#comment-99134 Thu, 15 Jun 2017 22:04:15 +0000 https://www.practical365.com/?p=38858#comment-99134 FYI Resolve-DnsName is Windows 8 and above.
[System.Net.Dns]::GetHostAddresses(“server.domain.com”) should be similar for Win 7

]]>