functions/invoke-d365modelutil.ps1

<#
.SYNOPSIS
Invoke the ModelUtil.exe
 
.DESCRIPTION
A cmdlet that wraps some of the cumbersome work into a streamlined process
 
.PARAMETER Path
Path to the model package/file that you want to install into the environment
 
The cmdlet only supports an already extracted ".axmodel" file
 
.PARAMETER BinDir
The path to the bin directory for the environment
 
Default path is the same as the AOS service PackagesLocalDirectory\bin
 
.PARAMETER MetaDataDir
The path to the meta data directory for the environment
 
Default path is the same as the aos service PackagesLocalDirectory
 
.PARAMETER Import
Switch to instruct the cmdlet to execute the Import functionality on ModelUtil.exe
 
Default value is: on / $true
 
.EXAMPLE
Invoke-D365ModelUtil -Path c:\temp\ApplicationSuiteModernDesigns_App73.axmodel
 
This will execute the import functionality of ModelUtil.exe and have it import the
c:\temp\ApplicationSuiteModernDesigns_App73.axmodel file
 
.NOTES
#>

function Invoke-D365ModelUtil {
    [CmdletBinding()]
    param (
        [Parameter(Mandatory = $True, ParameterSetName = 'Default', Position = 1 )]
        [Alias('Model')]
        [Alias('File')]
        [string] $Path,

        [Parameter(Mandatory = $false, ParameterSetName = 'Default', Position = 2 )]
        [string] $BinDir = "$Script:PackageDirectory\bin",

        [Parameter(Mandatory = $false, ParameterSetName = 'Default', Position = 3 )]
        [string] $MetaDataDir = "$Script:MetaDataDir",

        [Parameter(Mandatory = $false, ParameterSetName = 'Default', Position = 4 )]
        [switch] $Import = [switch]::Present
    )
    
    if (!(Test-PathExists -Path $MetaDataDir, $BinDir -Type Container)) {return}

    $executable = Join-Path $BinDir "ModelUtil.exe"
    if (!(Test-PathExists -Path $executable, $Path -Type Leaf)) {return}

    Write-PSFMessage -Level Verbose -Message "Testing the execution mode" -Target $Import
    if ($Import.IsPresent) {
        Write-PSFMessage -Level Verbose -Message "Building the parameter options."
        $param = @("-import",
            "-metadatastorepath=`"$MetaDataDir`"",
            "-file=`"$Path`"")
    }

    Write-PSFMessage -Level Verbose -Message "Starting the $executable with the parameter options." -Target $param
    Start-Process -FilePath $executable -ArgumentList  ($param -join " ") -NoNewWindow -Wait
}