functions/get-environment.ps1

<#
.SYNOPSIS
Returns the D365FO environment settings
 
.DESCRIPTION
Function for getting settings the D365FO environment uses.
 
.EXAMPLE
Get-Environment
 
.NOTES
General notes
#>

function Get-Environment
{

    Get-ApplicationEnvironment

}