How to start a release on Windows?

I try to start a release on Windows.

On Linux it’s as simple as

cd $release
bin/release.sh foreground -s mymodule

This code starts mymodule:start() of the release. Everything is setup properly by the release.sh created by rebar3. (Credits to the authors of Rebar3!!!). There is a similiar script for Windows release.cmd. But there is no option foreground and using console doesn’t work for me because it starts the shell:

cd %release%
bin\release.cmd console -s mymodule

The release environment is setup well so I thought I could use -eval. But it isn’t possible with console.

Any other ideas how to go forward?

Best greatings,
Acema