Hello
I have to start a postgresql server when blender starts. To start the server I use a .bat file I start manually.
I want to automatically start the server (execute the .bat) when Blender starts. I tried this script but it not working. ideas? thank you
import subprocess
filepath="C:\Users\PORTABLE\Desktop\pgsql_binaire\pgsql est.bat"
p = subprocess.Popen(filepath, shell=True, stdout = subprocess.PIPE)
stdout, stderr = p.communicate()