AzureADKerberos.psd1

#------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
#------------------------------------------------------------
@{

    # Script module or binary module file associated with this manifest.
    RootModule = 'Microsoft.AzureAD.Kdc.Management.dll'
    
    # Version number of this module.
    ModuleVersion = '1.0.0.0'
    
    # ID used to uniquely identify this module
    GUID = '1355DE08-8DAB-41C2-A5A5-E84DF26978DB'
    
    # Author of this module
    Author = 'Microsoft Corporation'
    
    # Company or vendor of this module
    CompanyName = 'Microsoft Corporation'
    
    # Copyright statement for this module
    Copyright = '(c) Microsoft Corporation. All rights reserved.'
    
    # Description of the functionality provided by this module
    Description = 'Microsoft Azure AD Kerberos Server Module for Windows PowerShell'
    
    # Minimum version of the Windows PowerShell engine required by this module
    PowerShellVersion = '2.0'
    
    # Name of the Windows PowerShell host required by this module
    PowerShellHostName = ''
    
    # Minimum version of the Windows PowerShell host required by this module
    PowerShellHostVersion = ''
    
    # Minimum version of the .NET Framework required by this module
    DotNetFrameworkVersion = ''
    
    # Minimum version of the common language runtime (CLR) required by this module
    CLRVersion = ''
    
    # Processor architecture (None, X86, Amd64, IA64) required by this module
    ProcessorArchitecture = ''
    
    # Modules that must be imported into the global environment prior to importing this module
    RequiredModules = @()
    
    # Assemblies that must be loaded prior to importing this module
    RequiredAssemblies = @(
    <#
    The PasswordSynchronization.* assemblies are used to read the Domain Controllers
    secret encryption key (it's password) from on-premises Active Directory.
    #>

    '.\Microsoft.Online.PasswordSynchronization.dll',
    '.\Microsoft.Online.PasswordSynchronization.Cryptography.dll',
    '.\Microsoft.Online.PasswordSynchronization.Resources.dll',
    '.\Microsoft.Online.PasswordSynchronization.Rpc.dll',
    <#
    Used to authenticate to Azure AD. Required by the Microsoft.Online.Deployment.Client.Framework assembly.
    #>

    '.\Microsoft.IdentityModel.Clients.ActiveDirectory.dll',
    <#
    Used to read, write, and update objects using the Admin Web Service (AWS).
    #>

    '.\Microsoft.Online.Coexistence.Provision.dll',
    '.\Microsoft.Online.Coexistence.Schema.Ex.dll',
    '.\Microsoft.Online.Coexistence.Security.dll',
    '.\Microsoft.Online.DirSync.Common.dll',
    '.\Microsoft.Online.DirSync.ResAgent.dll',
    <#
    Used to authenticate to Azure AD and get an access token that can be used to access the Admin Web Service (AWS). Specifically,
    the AzureAuthenticationProvider that is used by ProvisionHelper.
    #>

    '.\Microsoft.Online.Deployment.Client.Framework.dll',
    <#
    Used to integrate the logging from Azure AD Kerberos PowerShell into the same logging used by Azure AD Connect.
    #>

    '.\Microsoft.Online.Deployment.Framework.dll',
    '.\Microsoft.Online.Deployment.Types.dll',
    <#
    The Azure AD Kerberos Server related assemblies.
    #>

    '.\Microsoft.AzureAD.Kdc.Diagnostics.dll',
    '.\Microsoft.AzureAD.Kdc.Service.dll',
    '.\Microsoft.AzureAD.Kerberos.dll',
    <#
    Used to encrypt the Domain Controller's secret encryption key (it's password) before writing the object to Azure AD.
    #>

    '.\Microsoft.AzureAD.MsodsEncryption.dll',
    '.\Security.Cryptography.dll',
    <#
    Open source JSON assembly. Used to serialize/deserialize the Azure AD Kerberos Server configuration object.
    #>

    '.\Newtonsoft.Json.dll',
    <#
    Used for Azure AD graph intrace..
    #>

    '.\Microsoft.Data.Services.Client.dll',
    '.\System.Management.Automation.dll'
    )
    
    # 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 = @()
    
    # Modules to import as nested modules of the module specified in ModuleToProcess
    NestedModules = @()
    
    # Functions to export from this module, for best performance, do not use wild cards and do not delete the entry, use an empty array if there are no functions to export.
    FunctionsToExport = '*'
    
    # Cmdlets to export from this module, for best performance, do not use wild cards 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 wild cards and do not delete the entry, use an empty array if there are no aliases to export.
    AliasesToExport = '*'
    
    # List of all modules packaged with this module
    ModuleList = @()
    
    # List of all files packaged with this module
    FileList = @()
    
    # Private data to pass to the module specified in ModuleToProcess
    PrivateData = ''
    
    }