Running DOpusRT.exe command with quotes via PowerShell

.\dopusrt.exe /acmd Go TABGROUPLOAD="CV Building"

I get the error pictured below. I have tested the part Go TABGROUPLOAD="CV Building" inside standard Opus button and it works fine.
What could I be doing wrong?

Any help would be greatly appreciated!


Windows 11 64bit PC

There are spaces in the current (.\) folder name so ".\dopusrt.exe" is not being interpreted the way you want.

1 Like

It's not that, it's that PowerShell moves the quotes around for some reason.

I'm no expert on PowerShell, but this seems to fix it:

.\dopusrt.exe /acmd Go 'TABGROUPLOAD="CV Building"'

Hey that did it, strange with the quotes.
Thank you for your help, both of you.