Search found 1 match
- 01 Oct 2010 09:58
- Forum: DOS Batch Forum
- Topic: Help me run a TextPad Macro in my batch file
- Replies: 1
- Views: 3248
Help me run a TextPad Macro in my batch file
Hello, I have a batch file that gives me a directory listing of all the files in a certain folder and I want it to run a macro that I have set up in TextPad. So far I have: @echo off dir %1 /b /-p /o:gn > "c:\Listing.txt" start /w textpad "c:\Listing.txt" exit What would I put to...