DSCResources/WindowsFirewall/WindowsFirewall.psd1
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. @{ # Script module or binary module file associated with this manifest. RootModule = 'WindowsFirewall.schema.psm1' # Version number of this module. ModuleVersion = '1.0.0.0' # ID used to uniquely identify this module GUID = '260c648b-5f3e-4b4b-a3e1-0fabb5554992' # Author of this module Author = 'Adam Haynes' # Company or vendor of this module CompanyName = 'Microsoft Corporation' # Copyright statement for this module Copyright = '(c) 2017 Adam Haynes. All rights reserved.' # Description of the functionality provided by this module Description = 'Composite DSC Resource for managing the Windows Firewall DISA STIGs' # 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 = @('WindowsFirewall') # 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 = @() # 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 = @{ } # End of PSData hashtable } # End of PrivateData hashtable } |