Commands Run Program Files folder

I've been trying to start Kodi using the commands run mqtt message. It's working with the notepad.exe example and other programs but if I want to run something from my Program Files folder it's giving different error messages. Examples: {"command": "C:\Program Files\Mozilla Firefox\firefox.exe"} or {"command": "C:\Program Files\Mozilla Firefox\firefox.exe", "user": "xxx"} Firefox gives a profile missing error.

Example: {"command": "C:\Program Files\Kodi\kodi.exe"} or {"command": "C:\Program Files\Mozilla Firefox\firefox.exe", "user": "xxx"} Kodi gives a ERROR: Unable to create application. Exiting.

When clicking the same program directly on the computer everything is working fine. I think it's a rights/user issue. I installed it with administrator privileges.

Also there is a small typo on your wiki. Page: https://gitlab.com/iotlink/iotlink/wikis/Addons/Commands Example: { "command", "notepad.exe", "args": "C:\teste.txt", "path": "C:\", "user": "myusername" } Should be: { "command": "notepad.exe", "args": "C:\teste.txt", "path": "C:\", "user": "myusername" }