• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Do I need a batch file???

joburnet

Senior member
I need to write a program that will open a file on all of the computers in my network and download the contents of that file, along with the computer name and ip address to a text file on my computer. Can I do this with a batch file or is there another program that would be useful? All of the computers are running Windows NT. Thanks.
 
WINIPCFG /BATCH OUTPUT.TXT is the batch command I used on all my 9x machines. IPCONFIG>>OUTPUT.TXT may work just as well...
Not sure how to get it to run on all your machines on queue though...
">>" will append the output to the other file without overwriting (Just ">" will overwrite), but I'm not sure if it works over a network share.
 
Back
Top