Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Re: making a batch file that stores all network de  (Read 11630 times)

0 Members and 1 Guest are viewing this topic.

Samir Khan

  • Guest
Re: making a batch file that stores all network de
« on: May 18, 2004, 11:37:28 PM »
When you use the command
net accounts > net.txt
all the details which are present in the file net.txt will be overwritten since   ">" overwrites all details.

if u wanna append to the file then use ">>"
for example
net computer >> net.txt
will append to net.txt