M365Permissions.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'M365Permissions.psm1' # Version number of this module. ModuleVersion = "1.0.5" # Supported PSEditions CompatiblePSEditions = @('Core') # ID used to uniquely identify this module GUID = "748c97a1-b861-4bc5-8455-53494b565526" # Author of this module Author = "Jos Lieben (jos@lieben.nu)" # Company or vendor of this module CompanyName = "Lieben Consultancy" # Copyright statement for this module Copyright = "https://www.lieben.nu/liebensraum/commercial-use/" # Code and readme locations HelpInfoURI = "https://github.com/jflieben/assortedFunctionsV2/tree/main/M365Permissions" # Description of the functionality provided by this module Description = " SUMMARY: Report on permissions in a Microsoft 365 tenant. Provides a 360° view of what a given identity can see and do. INSTALLATION: Install-PSResource -Name M365Permissions -Repository PSGallery EXAMPLES: Get-AllM365Permissions -expandGroups Get-SpOPermissions -siteUrl `"https://tenant.sharepoint.com/sites/site`" -ExpandGroups Get-SpOPermissions -teamName `"INT-Finance Department`" -OutputFormat XLSX,CSV get-AllSPOPermissions -ExpandGroups -IncludeOneDriveSites -ExcludeOtherSites get-AllEntraPermissions -expandGroups Get-AllExOPermissions -includeFolderLevelPermissions Get-ExOPermissions -recipientIdentity `$mailbox.Identity -includeFolderLevelPermissions Please note that this module is provided AS-IS, no guarantees or warranties provided. Use at your own risk." # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '7.4' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @( 'PnP.PowerShell', 'ImportExcel' ) # Variables to export from this module VariablesToExport = '*' # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = '*' } |