I want to append a note to a .txt file Fight from the RUN command box
for example like so:
echo "wifi pass at Marks house - 3651930107604347" >> c:\wifi.txt
or so ...
but RUN complains that it doesn't know what echo is ..
quote:Windoes cannot find "echo.exe". Make sure you typed the name correctly, and then try again.
I did a system search for "echo" to no avail :/
hmmm what do you think? maybe I can improvise a .bat called "echo" that will take a parameter .. hmm
any ideas ..
thank you ..
UPDATE I made a small workaround:
echo.bat and added it to the path
echo %* >> c:\wifi.txtpauseand it works fine now
↧