Hello Dev! We have a scenario when we need to compile ISV solution that has been locked so in that case you build or compile that specific model using PowerShell scripts. Alternate approach is you can reference that model with you existing model and then build that model with "Build model with reference". Script: Note : FlexProperty is my model param ( [switch] $Incremental, [switch] $Ref, [string] $Metadata = "C:\AOSService\PackagesLocalDirectory", [string] $CompilerMetadata = "C:\AOSService\PackagesLocalDirectory", [string] $XRefSqlServer = "localhost", [string] $XRefDbName = "AxDB", [string] $ModelModule = "FlexProperty", [string] $OutPut = "C:\AOSService\PackagesLocalDirectory\FlexProperty\bin", [string] $XmlLog = "C:\AOSService\PackagesLocalDirectory\FlexProperty\BuildProjectResult.xml", [string] $Log = "C:\AOSService\PackagesLocalDirectory\FlexProperty\BuildProjectResult.log", [string] $...