How to modify a .txt file using .bat?
Solved
TheKiller3-johan
Posted messages
28
Status
Membre
-
TheKiller3-johan Posted messages 28 Status Membre -
TheKiller3-johan Posted messages 28 Status Membre -
Hello, I am asking this question on the forum because
I do not know how to modify a .txt with a .bat
Example:
I want that in the .bat I can
add a sentence in a .txt "contact"
Thank you in advance
Best regards,
Johan
I do not know how to modify a .txt with a .bat
Example:
I want that in the .bat I can
add a sentence in a .txt "contact"
Thank you in advance
Best regards,
Johan
And/or what it is named?
Or
echo contact >> %UserProfile%\Desktop\test\test.txt
Or
(If your .bat is in the same folder as your .txt)
echo contact >> %test.txt
Thank you very much!