How to send a file to multiple computers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there,

I am sorry if I am posting in the wrong section, but I really don't know
where to start.

I need to send a Norton AV .VDB file to multiple computers on the network,
so it pulls definitions from the right server. The file should be placed in
the same folder on all computers. I have about 200 computers to doing them 1
by 1 will take forever. Can someone please advise me if there is a program
that I can use that will allow me to broadcast a file to the selected groups
in Active Directory?

I really appreciate your time and help.
Thank you.
 
Why not simply use a batch (CMD) file as part of the logon script to copy
the file?

--
Richard G. Harper [MVP Shell/User] (e-mail address removed)
* PLEASE post all messages and replies in the newsgroups
* for the benefit of all. Private mail is usually not replied to.
* My website, such as it is ... http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm
 
Thank you for your reply. Is there a place where I can get instructions on
how to set it up?
Thank you very much.

Richard G. Harper said:
Why not simply use a batch (CMD) file as part of the logon script to copy
the file?

--
Richard G. Harper [MVP Shell/User] (e-mail address removed)
* PLEASE post all messages and replies in the newsgroups
* for the benefit of all. Private mail is usually not replied to.
* My website, such as it is ... http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm


VVS said:
Hi there,

I am sorry if I am posting in the wrong section, but I really don't know
where to start.

I need to send a Norton AV .VDB file to multiple computers on the network,
so it pulls definitions from the right server. The file should be placed
in
the same folder on all computers. I have about 200 computers to doing
them 1
by 1 will take forever. Can someone please advise me if there is a program
that I can use that will allow me to broadcast a file to the selected
groups
in Active Directory?

I really appreciate your time and help.
Thank you.
 
You'd essentially need only a one-line CMD file:

copy \\servername\sharname\name_of_file.VDB
c:\directoryname\name_of_file.VDB

If you wanted to get really fancy and cut down on network traffic you could
add a flag file or use scripting to test to see if the source file is newer
than the existing file. These exercises I leave for the user to research
with Google or your favorite search engine. :-)

You'd assign this logon script to each user and it would run when they log
in.

--
Richard G. Harper [MVP Shell/User] (e-mail address removed)
* PLEASE post all messages and replies in the newsgroups
* for the benefit of all. Private mail is usually not replied to.
* My website, such as it is ... http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm


VVS said:
Thank you for your reply. Is there a place where I can get instructions on
how to set it up?
Thank you very much.

Richard G. Harper said:
Why not simply use a batch (CMD) file as part of the logon script to copy
the file?

--
Richard G. Harper [MVP Shell/User] (e-mail address removed)
* PLEASE post all messages and replies in the newsgroups
* for the benefit of all. Private mail is usually not replied to.
* My website, such as it is ... http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm


VVS said:
Hi there,

I am sorry if I am posting in the wrong section, but I really don't
know
where to start.

I need to send a Norton AV .VDB file to multiple computers on the
network,
so it pulls definitions from the right server. The file should be
placed
in
the same folder on all computers. I have about 200 computers to doing
them 1
by 1 will take forever. Can someone please advise me if there is a
program
that I can use that will allow me to broadcast a file to the selected
groups
in Active Directory?

I really appreciate your time and help.
Thank you.
 
You'd essentially need only a one-line CMD file:

copy \\servername\sharname\name_of_file.VDB
c:\directoryname\name_of_file.VDB

If you wanted to get really fancy and cut down on network
traffic you could add a flag file or use scripting to test to
see if the source file is newer than the existing file. These
exercises I leave for the user to research with Google or your
favorite search engine. :-)

You'd assign this logon script to each user and it would run
when they log in.
This should do the trick:

xcopy /d \\servername\sharname\name_of_file.VDB
c:\directoryname\name_of_file.VDB

.... only copies a younger file.
 
Thank you very much for your help!

Richard G. Harper said:
Good catch! I didn't think of using XCOPY instead of COPY.

--
Richard G. Harper [MVP Shell/User] (e-mail address removed)
* PLEASE post all messages and replies in the newsgroups
* for the benefit of all. Private mail is usually not replied to.
* My website, such as it is ... http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm


McSpreader said:
This should do the trick:

xcopy /d \\servername\sharname\name_of_file.VDB
c:\directoryname\name_of_file.VDB

... only copies a younger file.
 
Glad I could give you (half! <G>) the solution.

--
Richard G. Harper [MVP Shell/User] (e-mail address removed)
* PLEASE post all messages and replies in the newsgroups
* for the benefit of all. Private mail is usually not replied to.
* My website, such as it is ... http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm


VVS said:
Thank you very much for your help!

Richard G. Harper said:
Good catch! I didn't think of using XCOPY instead of COPY.

--
Richard G. Harper [MVP Shell/User] (e-mail address removed)
* PLEASE post all messages and replies in the newsgroups
* for the benefit of all. Private mail is usually not replied to.
* My website, such as it is ... http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm


McSpreader said:
You'd essentially need only a one-line CMD file:

copy \\servername\sharname\name_of_file.VDB
c:\directoryname\name_of_file.VDB

If you wanted to get really fancy and cut down on network
traffic you could add a flag file or use scripting to test to
see if the source file is newer than the existing file. These
exercises I leave for the user to research with Google or your
favorite search engine. :-)

You'd assign this logon script to each user and it would run
when they log in.

This should do the trick:

xcopy /d \\servername\sharname\name_of_file.VDB
c:\directoryname\name_of_file.VDB

... only copies a younger file.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top