What should I do to be able to call Ghostscript in Windows by its invocation name? I added Ghostscript bin folder to Windows PATH and Path variables but it doesn\'t work, ne
There are several possibilities. To list the two most frequent ones:
c:\full\path\to\gswin32c.exe
should always work.
For 64bit systems, use c:\full\path\to\gswin64c.exe
.%path%
environment variable is used.cmd
window and (assuming your Ghostscript installation ended up in c:\path\to\gs
...) then type set path=c:\path\to\gs\gs9.02\bin;%path%
. From this same cmd window you can now simply use gswin32c
to start Ghostscript (use gswin64c
on 64 bit Windows)...