When I create a .txt in a batch file it asks me to choose a program to read it. How do I make it reconize it as a .txt and use notepad to open?
For example if i create it like:
Echo Hello world >>learn'n.txt
start learn'n.txt
The start command would not work because it is classified as a "file" and not a .txt However:
Start learn'n
Opens a dialog box asking what program to use to open learn'n with.
Thanks for your help!