MpUtils.psd1
@{ # Script module or binary module file associated with this manifest RootModule = 'MpUtils.psm1' # Version number of this module ModuleVersion = '1.0.0' # ID used to uniquely identify this module GUID = 'e35f74d1-79c3-4d2b-92b8-40f94f7a204a' # Author of this module Author = 'ricarob' # Company or vendor of this module CompanyName = 'msftinternal' # Description of the functionality provided by this module Description = 'MpUtils is a PowerShell module for managing and retrieving information about Microsoft Defender threats.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @() # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry FunctionsToExport = @( 'Get-MpDetections', 'Get-MpThreatList', 'Get-MpAllowedThreats', 'Add-MpAllowThreat', 'Remove-MpAllowedThreats', 'Get-MpASREventLogs', 'Get-MpGuids' ) # Private data to pass to the module specified in RootModule/ModuleToProcess PrivateData = @{ PSData = @{ # Tags applied to this module to indicate this is a Defender-related module Tags = @('Defender', 'Security', 'Threats') # A URL to the license for this module LicenseUri = '' # A URL to the main website for this project ProjectUri = '' # ReleaseNotes of this module ReleaseNotes = 'Initial release of MpUtils module.' } } } |