Start/Stop PostgreSQL under Windows

There is a simple way to start/stop postgresql without any need to open the services dialogue:

NET START postgresql-x64-9.3
NET STOP postgresql-x64-9.3

Just replace the version in the statements (you only need major and minor). Just skip the -x64 if you still have a 32bit version.

Leave a Comment