NLBaseline.psd1

#
# Module manifest for module 'NLBaseline'
# PowerShell Module for Dutch Baseline for Secure Cloud
#

@{

# Script module or binary module file associated with this manifest.
RootModule = 'NLBaseline.psm1'

# Version number of this module.
ModuleVersion = '1.0.0'

# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'

# Author of this module
Author = 'Dutch Baseline Team'

# Company or vendor of this module
CompanyName = 'Dutch Baseline'

# Copyright statement for this module
Copyright = '(c) 2026 Dutch Baseline. All rights reserved.'

# Description of the functionality provided by this module
Description = 'PowerShell Module for managing and implementing the Dutch Baseline for Secure Cloud via Microsoft Intune'

# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '5.1'

# Name of the PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This requirement is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This requirement is valid for the PowerShell Desktop edition only.
# CLRVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''

# For Intune Import/Export, install Microsoft.Graph.Authentication and Microsoft.Graph.DeviceManagement via deployment\Install-NLBaselineModules.ps1
RequiredModules = @()

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()

# Functions to export from this module
FunctionsToExport = @(
    'Start-NLBaseline',
    'Initialize-NLBaseline',
    'Import-NLBaselineToIntune',
    'Export-NLBaselineFromIntune',
    'Restore-NLBaselineFromIntune',
    'Import-WingetAutoUpdateToIntune',
    'Import-EndpointSecurityToIntune',
    'Import-UpdateRingsToIntune',
    'Import-CompliancePolicyToIntune',
    'Import-MultiPlatformComplianceToIntune',
    'Import-AppProtectionPolicyToIntune',
    'Import-ASRPolicyToIntune',
    'Import-ExploitProtectionToIntune',
    'Import-EventViewerCustomViews',
    'Import-CountryIPBlockingToIntune',
    'Import-IntunePolicyFromJSON',
    'Import-MicrosoftSecurityBaselineToIntune',
    'Import-Microsoft365AppsBaselineToIntune',
    'Import-EdgeSecurityBaselineToIntune',
    'Import-OptionalWindowsFeaturesToIntune',
    'Import-AuditPoliciesToIntune',
    'Import-CertificateCheckingToIntune',
    'Import-WDACPolicyToIntune',
    'Import-CSPPolicyToIntune',
    'Import-CISBenchmarkToIntune',
    'Import-TamperProtectionToIntune',
    'Import-WindowsLAPSToIntune',
    'Remove-AllNLBaselinePoliciesFromIntune',
    'Deploy-AllNLBaselineToIntune',
    'Deploy-NLBaselineWithRings',
    'Assign-IntunePolicyToGroup',
    'Get-RingConfigurationTemplate',
    'Update-NLBaselineDeployments',
    'Get-NLBaselineStatus',
    'Get-NLBaselineConfig',
    'Set-NLBaselineConfig',
    'Reset-NLBaselineWorkspace',
    'Sync-NLBaselineWorkspace',
    'Check-NLBaselineUpdates',
    'Update-NLBaselineWorkspace'
)

# Cmdlets to export from this module
# CmdletsToExport = @()

# Variables to export from this module
# VariablesToExport = @()

# Aliases to export from this module
# AliasesToExport = @()

# DSC resources to export from this module
# DscResourcesToExport = @()

# List of all files packaged with this module
FileList = @()

# 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 = @('Baseline', 'Intune', 'Security', 'Compliance', 'DutchBaseline')

        # A URL to the license for this module.
        # LicenseUri = ''

        # A URL to the main website for this project.
        # ProjectUri = ''

        # A URL to an icon representing this module.
        # IconUri = ''

        # ReleaseNotes of this module
        ReleaseNotes = 'Initial release of NLBaseline PowerShell Module'

    } # End of PSData hashtable

} # End of PrivateData hashtable

}