Modules/d365fo.tools/0.7.4/functions/get-d365environmentsettings.ps1


<#
    .SYNOPSIS
        Get the D365FO environment settings
        
    .DESCRIPTION
        Gets all settings the Dynamics 365 for Finance & Operations environment uses.
        
    .EXAMPLE
        PS C:\> Get-D365EnvironmentSettings
        
        This will get all details available for the environment
        
    .EXAMPLE
        PS C:\> Get-D365EnvironmentSettings | Format-Custom -Property *
        
        This will get all details available for the environment and format it to show all details in a long custom object.
        
    .NOTES
        Tags: Environment, Configuration, WebConfig, Web.Config, Decryption
        
        Author: Rasmus Andersen (@ITRasmus)
        Author: Mötz Jensen (@Splaxi)
        
        The cmdlet wraps the call against a dll file that is shipped with Dynamics 365 for Finance & Operations.
        The call to the dll file gets all relevant details for the installation.
#>

function Get-D365EnvironmentSettings {
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseSingularNouns", "")]
    [CmdletBinding()]
    param ()

    Get-ApplicationEnvironment
}