ADUserGroup.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'ADUserGroup.psm1' # Version number of this module. ModuleVersion = '1.3.1' # ID used to uniquely identify this module GUID = '616aa4fb-db93-45a1-9b67-b3e01a08cd2e' # Author of this module Author = 'Dailen' # Company or vendor of this module CompanyName = 'WideData' # Copyright statement for this module Copyright = '(c) 2024 WideData. All rights reserved.' # Description of the functionality provided by this module Description = 'Module for fetching Active Directory user groups' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' # Functions to export from this module, for best performance, do not use '*' and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = '*' # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = 'ActiveDirectory', 'UserGroups', 'ADUserGroups', 'AD', 'User', 'Groups', 'WideData' # A URL to the license for this module. LicenseUri = 'http://opensource.org/licenses/Apache-2.0' # A URL to the main website for this project. ProjectUri = 'https://github.com/WideData/ADUserGroup' # A URL to an icon representing this module. IconUri = 'https://raw.githubusercontent.com/WideData/ADUserGroup/master/icon.png' # ReleaseNotes of this module ReleaseNotes = 'Initial Release of ADUserGroup module' # Prerelease string of this module # Prerelease = '' # Flag to indicate whether the module requires explicit user acceptance for install/update/save # RequireLicenseAcceptance = $false # External dependent modules of this module # ExternalModuleDependencies = '' } } } |