Quote:Speaking of interop between QM3 and PowerShell, do you know if it is possible to go the other way, calling QM3 from PowerShell.
Yes, but not from the Windows PowerShell, because it uses .NET 4. Au.dll uses .NET 6, and they are incompatible. Install PowerShell 7. It does not have an ISE; for it can be used VSCode with PowerShell extension. Tested, works. Tested on Windows 11. Need Windows 8.1 or later.
Add-Type –Path "C:\......\Au.dll"
[Au.dialog]::show('Au in PowerShell')
[Au.run]::it('notepad.exe')
Also add environment variable Au.Path = Au.dll folder path. After adding/removing/editing environment variables may need to restart apps or Windows to propagate the changes.