1.

Solve : Re: making a batch file that stores all network de?

Answer»

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



Discussion

No Comment Found