ragemxf Posted November 23, 2005 Posted November 23, 2005 How could I send one file to say 20 computers's c drive with autoit?
Nuffilein805 Posted November 24, 2005 Posted November 24, 2005 (edited) if you got adminrights and a list of the pc-names then it should be easy the list may look like pc1|pc2|pc3|...|pc20if this is stored in ... lets say pc.txt then your code may look like $list = stringsplit(filereadline("pc.txt", 1), "|") for $i = 1 to $list[0] step 1 filecopy("source", "\\" & $list[$i] & "\c$\directory\*", 8);for copying and maybe creating new directory next if you don't have adminrights than this is useless Edited November 24, 2005 by Nuffilein805 my little chatmy little encryption toolmy little hidermy unsafe clickbot
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now