Oct 13, 2004 #1 room24 Programmer Dec 28, 2003 83 JM i want create a script from my server that can copy a file file to all the machines on my net work how would i do that
i want create a script from my server that can copy a file file to all the machines on my net work how would i do that
Oct 13, 2004 #2 patrick118 Technical User Jan 14, 2004 315 NL If you say from my server to all my machines. Do you mean from server to workstation? are you having a domain? If yes you can do this really simple with a login script. Batch file or vbs batch file perhaps most easy copy \\server\share\file c:\localhostlocation Upvote 0 Downvote
If you say from my server to all my machines. Do you mean from server to workstation? are you having a domain? If yes you can do this really simple with a login script. Batch file or vbs batch file perhaps most easy copy \\server\share\file c:\localhostlocation
Oct 14, 2004 #3 mwiner IS-IT--Management Oct 24, 2002 266 US Just remember use either short filenames and directories If it is longer then 8 chars then it is the first 6 chars then ~1 So if it is c:\documents and settings\ the short version is: c:\docume~1\ Or use quotes: c:\"documents and settings"\user1\desktop etc, etc Upvote 0 Downvote
Just remember use either short filenames and directories If it is longer then 8 chars then it is the first 6 chars then ~1 So if it is c:\documents and settings\ the short version is: c:\docume~1\ Or use quotes: c:\"documents and settings"\user1\desktop etc, etc