Copy and paste the contents of the batch file that you are using. Did you change the "C:\Users\Tyson\Pictures\Overlay.png" path to your path for an overlay image? Is the batch file in the same folder as the StarkCovers.exe? When you say it doesn't work what is happening?
My apologies, my examples may have been confusing to people not familiar with batch files and I should have explained. You need to remove the REM before a line for it to run. REM stands for remarks and these lines are not executed. Also make sure that if your path has a space in it anywhere you put quotation marks around the path. That should give better results.
heula wrote:Do I need these in the bat as well?
REM StarkCovers.exe \\Antec_HTPC\Movies\Kids -revertjpg
REM StarkCovers.exe "\\Antec_HTPC\Movies\Chick Flicks" -delpngbkp
REM StarkCovers.exe M:\Movies\Exercise -revertpng
You don't need these lines. Your batch file can be a single line if thats all you need. the "@echo off" command just keeps your console window a lot cleaner so you can see what is going on. I would leave it, also the pause line allows you to go back through the console window and read it. If you are going to set this up as a scheduled task you should remove that line. If you want to see the results of the console window in a text file just add " > log.txt" to the end of your line like this
StarkCovers.exe \\Server\Movies "C:\Program Files\StarkCovers\Overlay.png" > log.txt
a log.txt file with the output will be created in the same directory as your batch file was run in.