@ECHO OFF
REM The script sets environment variables helpful for PostgreSQL

@SET PATH="C:\Program Files (x86)\PostgreSQL\9.5\bin";%PATH%
@SET PGDATA=C:\Program Files (x86)\PostgreSQL\9.5\data
@SET PGDATABASE=postgres
@SET PGUSER=postgres
@SET PGPORT=5432
@SET PGLOCALEDIR=C:\Program Files (x86)\PostgreSQL\9.5\share\locale

                          