Hello,
thanks for the reply!
Sadly, it does not work to just point to the .exe because you only get "permission denied".
For example: Start-Process 'C:\Program Files\WindowsApps\2691AnsgarBeckerSoftwareD.19284136982C_11.3.1.0_x86__peg9cky9b9hfj\heidisql.exe'
That's why I came up with the shell:appsfolder command, but sadly it doesn't accept arguments.
The reason it's needed to start from CLI is because we want to connect to the local dev environment db server right away. (e.g. ddev heidisql)
The original command would be something like: '/c/Program Files/HeidiSQL/heidisql.exe' "--host=127.0.0.1 --port=${DDEV_HOST_DB_PORT} --user=root --password=root --description=${DDEV_SITENAME}" &
(which of course does work if HeidiSQL is installed via the installer, but not if installed via Microsoft Store)
I'll probably have to ask somewhere at Microsoft if there's a way to start Microsoft Store apps from cli with arguments if you don't know a way for it.