
My first attempts were something like:

cd\sbbs\xtrn\usurper\score
ansi2png -y uscores.ans
copy uscores.ans.png c:\sbbs\web\html /y

Although that would work on a batch file if I just run it in a command prompt, all but the last part would run as a cleanup function.

So, I replaced the copy with:

move /y uscores.ans.png c:\sbbs\web\html

still, it didn't work.

Finally what I did to get it to work correctly is to actually set the score file location from the door game in to the directory I wanted them to be in,
which I then decided to be the html\scores directory, and the uscores.ans file to usurper.ans, and I updated the batch file with this:

cd\sbbs\web\html\scores
ansi2png -y usurper.ans

And it worked... So, I tried to do both the user scores and the team scores:

cd\sbbs\web\html\scores
ansi2png -y usurper.ans
ansi2png -y usurptm.ans

and it worked too. I summoned the png files from a web browser, and eventually, the synchronet web server will have its port changed so that both the worldgroup and sbbs web servers will be accessible to every one.

if there are any bbs door games that don't allow you to change the score directories, I can still get by put making all the magic happen in the actual door summoning batch file... it might be a pain with some multi-node doors but it's possible.