I am new to MikTeX. I have set up a texmf tree and included that into MikTeX (works OK because the style files are found). But the font in that directory cannot be used yet, because the pdftex.map does not have the info from my map file.
I run initexmf --edit-config-file updmap (also with --admin) and enter (as the only line)
Map mymap.map
then I run updmap (also with --admin and --verbose), my mapfile gets listed as Parsing "c:\Path\to\mapfile.map".... But pdftex does not work, because it fails with:
Trying to make PK font abc8x at 600 DPI...
...
When I manually include the map file in first line of my .tex file
\pdfmapfile{+mymap.map}
everything is OK.
How do I do without the \pdfmapfile{...} line?

texmf/fonts/map/dvips/mymap.map(and also belowpdftex/mymap.map). – dıʞsdoʇ Jul 6 '11 at 12:31kpsewhich mymap.mapfinds the file? – Herbert Jul 6 '11 at 12:33initexmf -u. Run againupdmap --verbose. Try again your font. If it doesn't work: Check which pdftex.map updmap writes. Check if this it the map file your document use (see end of the log-file). Check if this pdftex.map contains the entries of your map. – Ulrike Fischer Jul 6 '11 at 12:35