Saved Bookmarks
| 1. |
Solve : How to: create a text file from a bat? |
|
Answer» HELLO, Hopefully this is easy for someone. What I'm trying to do is have a bat file leave a text file in the ROOT of c:\ It doesn't need to have anything in it, it just has to be there. What we are doing is RUNNING audit software and we have the ip range check accounted for but would LIKE the process skipped if the audit has run correctly. thanks in advance!echo >c:\done.txt for example should do it. hope it helps uli I knew it was something simple, thank you!!You can also use >> c:/Yourfilename.txt ECHO something in your file |
|