cd /D "%~dp0" : Get the git commit / branch and write it into build.py. FOR /F "tokens=* USEBACKQ" %%F IN (`git rev-parse --short HEAD`) DO ( SET build_commit=%%F ) FOR /F "tokens=* USEBACKQ" %%F IN (`git branch --show-current`) DO ( SET build_branch=%%F ) echo BUILD: str = "%build_commit%"> ..\build.py echo BRANCH: str = "%build_branch%">> ..\build.py poetry install : Generate the json config in case you wanted to use the gui to regenerate the command below manually. poetry run python generate-build-exe-config.py : auto-py-to-exe -c build-exe-config.json -o ../install poetry run python build-exe.py build-exe-pyinstaller-command.bat del *.spec /q del ..\build.py /q echo "Output file should be located in 'output/' folder." TIMEOUT 5