Fist you need GhostScript not GhostView. GhostView is just a
viewer and it doesn't include "ps2pdf14" command.
You need GhostScript.
Get it here:
Download: gs856w32.exe
Well i installed Ghostscript from "Porting And Archive Centre For HP-UX". Then i had setup I-DEAS Print to output me a .ps (PostScript) file.
When i have a .ps file i just do
ps2pdf -r300 file.ps file.pdf
and i get PDF
I also wrote a shell script which converts all .ps files to .pdf in one directory and deletes .PS files. But it's only for UNIX.
#!/usr/bin/sh
#
#
#
echo "*****************************************"
echo "* Converting .PS files to .PDF *"
echo "*****************************************"
ls -1 /home/mkodric/PDF/*.ps | while read file
do
ps2pdf14 -r300 $file && rm $file
done
echo " ******** FINISHED *********"
You should check Ghostscript manual for Windows. I believe there must be somewhere that ps2pdf installed.