Batch Processing Export and Import in XML format. Passolo 2022 Team 5 Edition 22.0.254.0

I have the Passolo 2022 Team 5 Edition 22.0.254.0 software installed and I am attempting to script an export in XML format. I am finding that I don't have the ability to script this for various reasons. For instance the COM class that I have access to does not have the ability to open the project. Can you tell me if there is something else I have to purchase in order to be able to script or batch the export/import of my project? An example of the attempt:in Powershell:

# Create Passolo COM object
$passolo = New-Object -ComObject "Passolo.Application.22"
$passolo | Get-Member
$passolo.Visible = $false
# Open the project via Documents
$passolo.Documents.Open("D:\Work3\User_Interface\PassoloProjects\Core.2601\Core.2601 - Copy.lpu")
Received this error:
Failed to open Passolo project – ActiveProject is null
At D:\Core\RunExportCore.ps1:18 char:5
+     throw "Failed to open Passolo project – ActiveProject is null"
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OperationStopped: (Failed to open ...Project is null:String) [], RuntimeException
    + FullyQualifiedErrorId : Failed to open Passolo project – ActiveProject is null
The COM object Members available are:
TypeName: System.__ComObject#{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}
Name                 MemberType            Definition                                                                  
----                 ----------            ----------                                                                  
ConvertASCII2Unicode Method                string ConvertASCII2Unicode (string, int)                                    
ConvertUnicode2ASCII Method                string ConvertUnicode2ASCII (string, int)                                    
debug                Method                int debug (string, string, string)                                          
GetConcordances      Method                IPslTranslations GetConcordances (string, Variant, Variant, Variant, Variant)
GetDefaultCodePage   Method                int GetDefaultCodePage (short)                                              
GetLangCode          Method                string GetLangCode (short, Variant)                                          
GetLangID            Method                short GetLangID (string, Variant)                                            
GetLastOutput        Method                string GetLastOutput ()                                                      
GetTerminology       Method                IPslTranslations GetTerminology (string, Variant, Variant, Variant)          
GetTextCounts        Method                IPslStringCounter GetTextCounts (string)                                    
GotoString           Method                bool GotoString (string)                                                    
Import               Method                IPslTransList Import (string, string, Variant)                              
ImportOptions        Method                bool ImportOptions (string, Variant)                                        
Output               Method                void Output (string)                                                        
Quit                 Method                void Quit (Variant)                                                          
SelectFile           Method                bool SelectFile (string, bool, Variant, Variant)                            
SelectFolder         Method                bool SelectFolder (string, Variant)                                          
SendAddInMessage     Method                int SendAddInMessage (string, int, string)                                  
ShowAppStatus        Method                IPslAppStatus ShowAppStatus (int, Variant)                                  
TranslateText        Method                IPslTranslations TranslateText (string, Variant, Variant, Variant, Variant)  
Option               ParameterizedProperty Variant Option (int) {get} {set}                                            
OutputWnd            ParameterizedProperty IPslOutputWnd OutputWnd (Variant) {get}                                      
User                 ParameterizedProperty string User (Variant) {get}                                                  
I am able to do this manually through the desktop application. My question is do I have to purchase something else in order to be able to perform an export and import in batch mode?
emoji