ExchangeManagement.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'ExchangeManagement.psm1' # Version number of this module. ModuleVersion = '0.1' # ID used to uniquely identify this module GUID = '1337aabd-6cd0-4027-b441-05c9b8a8e8f0' # Author of this module Author = 'diecknet' # Company or vendor of this module CompanyName = 'diecknet' # Copyright statement for this module Copyright = '(c) 2023 diecknet. All rights reserved.' # Description of the functionality provided by this module Description = 'This is a placeholder module to prevent typo-squatting of the ExchangeOnlineManagement module. There is no need to actually install this module.' # Functions 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 functions to export. FunctionsToExport = @("Connect-ExchangeOnline") # Cmdlets 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 cmdlets to export. CmdletsToExport = @() # 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 = @() } |