Help me run a TextPad Macro in my batch file

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
Onenguyen
Posts: 1
Joined: 01 Oct 2010 09:54

Help me run a TextPad Macro in my batch file

#1 Post by Onenguyen » 01 Oct 2010 09:58

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 run that macro?

Thank you!

ghostmachine4
Posts: 319
Joined: 12 May 2006 01:13

Re: Help me run a TextPad Macro in my batch file

#2 Post by ghostmachine4 » 01 Oct 2010 11:11

what does your macro do ?

Post Reply