functions/get-d365productinformation.ps1
<# .SYNOPSIS Returns information about D365FO .DESCRIPTION Gets detailed information about application and platform .EXAMPLE PS C:\> Get-ProductInfoProvider This will get product, platform and application version details for the environment .NOTES 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 product details for the environment. Author: Rasmus Andersen (@ITRasmus) #> function Get-D365ProductInformation { [CmdletBinding()] param () return Get-ProductInfoProvider } |