portable-devtools / scripts /stop_postgres.bat
codekingpro's picture
Add files using upload-large-folder tool
e98b0a7 verified
Raw
History Blame Contribute Delete
169 Bytes
@echo off
setlocal
call "%~dp0activate_env.bat"
echo [INFO] Stopping PostgreSQL Server...
pg_ctl -D "%PGDATA%" stop
echo [SUCCESS] PostgreSQL has been stopped.
endlocal