Agustin Gallegos
PS C:\> .\Get-QuarantineReport.ps1 -GroupAddress InfoSecurity -Recipients "[email protected]"
In this example the script will get all members from group "InfoSecurity".
Will get all quarantine messages related to these recipients.
It will ask for a global admin credentials.
It will generate the report file and save it to the user's Desktop.
Later will send the report by email to the recipient "[email protected]".
PS C:\> .\Get-QuarantineReport.ps1 -GroupAddress VIPUsers -OrgAdmins -ReportFilePath "C:\Temp\Quarantine Report.html"
In this example the script will get all members from group "VIPUsers".
Will get all quarantine messages related to these recipients.
It will ask for a global admin credentials.
It will generate the report file and save it to "C:\Temp\Quarantine Report.html".
Later will send the report by email to the tenant's Global Admin group.
Group Alias you want to get the list of members of
comma separated list of recipients to which the report should be sent to.
This is a switch Parameter. Using it, will send the report to every Global Admin in the tenant. Can be combined together with "recipients" parameter.
This is a switch Parameter. Using it, will send the report to the group you are collecting the report for.
Path where the HTML report will be saved. By default will be in the user's desktop named "Quarantine report.html".
- Updated script to Github repository.
- Updated script to use new EXO PS module.
- Added additional modules dependency.
- First Release.
- Project start.