Quote:
Originally Posted by alansplace
 That worked like a champ. So in addition to that how can one redirect the output to a text file? 
|
Try this:
Code:
echo off
for %a in (c:\ebooks\*.*) do kindledrm "%a" >> out.txt
echo on
NOTE: I don't have windows, so I'm just guessing. It should work, but I can't guarantee it.