
Zitat von
bilgenratte
Meine Idee war folgende: %windir%\system32\cmd.exe /K chcp 1252 && set PATH=%PATH%;C:\Apps\PostgreSQL\bin
Leider funktioniert das Auslesen der PATH Variable nicht und so hatte ich den Pfad kurzer Hand gekürzt (daher das Problem):
%windir%\system32\cmd.exe /K chcp 1252 && set PATH=C:\Apps\PostgreSQL\bin
Warum machst Du nicht eine Batchdatei die alles richtig aufsetzt und dann eine Verknüpfung zu der Batchdatei?
Code:
set PATH=%PATH%;C:\Apps\PostgreSQL\bin
chcp 1252
psql
oder noch einfacher (so mache ich es):
Code:
chcp 1252
C:\Apps\PostgreSQL\bin\psql
A SQL query walks into a bar and sees two tables. He walks up to them and says 'Can I join you?'
Lesezeichen