M365Reporting.psd1
# # Module manifest for module 'M365Reporting' # # Generated by: Robin Dadswell # # Generated on: 01/03/2022 # @{ RootModule = 'M365Reporting.psm1' ModuleVersion = '1.0.1.2' GUID = '6f505567-b194-4672-bd16-386cba3e539f' Author = 'Robin Dadswell', 'Luke Allinson', 'Justin Barker' CompanyName = 'Unknown' Copyright = '(c) 2022 Robin Dadswell, Luke Allinson & Justin Barker. All rights reserved.' Description = 'Provides tools to gather and report on some useful statistics within an M365 Tenant. This includes OneDrive Usage, Mailbox Sizes and Licence utilisation (inlcuding breakdown of assigned components)' RequiredModules = @( @{ ModuleName = 'ImportExcel'; ModuleVersion = '7.1.2'; }, @{ ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '1.5.0'; }, @{ ModuleName = 'Microsoft.Graph.Identity.DirectoryManagement'; ModuleVersion = '1.5.0'; }, @{ ModuleName = 'Microsoft.Graph.Groups'; ModuleVersion = '1.5.0'; }, @{ ModuleName = 'Microsoft.Graph.Users'; ModuleVersion = '1.5.0'; }, @{ ModuleName = 'ExchangeOnlineManagement'; ModuleVersion = '2.0.5'; }, @{ ModuleName = 'PnP.PowerShell'; ModuleVersion = '1.9.0'; } ) FunctionsToExport = @( 'Export-MailboxSizes', 'Export-MSOLUserLicenceBreakdown', 'Export-OneDriveUsageReport', 'Export-UserLicenceBreakdown', 'Get-MailboxSizes', 'Get-OneDriveUsageReport' ) CmdletsToExport = '' VariablesToExport = '' AliasesToExport = @( 'Export-MSOLUserLicenseBreakdown', 'Export-UserLicenseBreakdown' ) FileList = 'Private', 'Public' PrivateData = @{ PSData = @{ Tags = 'Office365', 'Microsoft365', 'Reporting', 'Licence', 'OneDrive' LicenseUri = 'https://github.com/JustinBarker77/Office365/blob/master/LICENSE' ProjectUri = 'https://github.com/JustinBarker77/Office365' ReleaseNotes = 'Initial release of M365 Reporting Module' } } DefaultCommandPrefix = 'M365R' } |