daniels012 Posted March 19, 2007 Report Share Posted March 19, 2007 I want to create a batch file to move a file on one of the other copmuters on our network. Is this even possible.Something like:MOVE \\TomsComputer\Work\HisFile.mdb \\TomsComputer\Daily /yI tried this, and it does nothing right now????I am not sure I have written the batch file properly?ThankYou,Michael Quote Link to comment Share on other sites More sharing options...
catgate Posted March 19, 2007 Report Share Posted March 19, 2007 I want to create a batch file to move a file on one of the other copmuters on our network. Is this even possible.Something like:MOVE \\TomsComputer\Work\HisFile.mdb \\TomsComputer\Daily /yI tried this, and it does nothing right now????I am not sure I have written the batch file properly?ThankYou,MichaelThat looks to me as though you are trying to move from a file TomsComputer to TomsComputer. Quote Link to comment Share on other sites More sharing options...
Scarecrow Man Posted March 19, 2007 Report Share Posted March 19, 2007 Try:MOVE /y \\TomsComputer\Work\HisFile.mdb \\TomsComputer\Dailyhttp://www.computerhope.com/movehlp.htm Quote Link to comment Share on other sites More sharing options...
ɹəuəllıʍ ʇɐb Posted March 20, 2007 Report Share Posted March 20, 2007 Yes, program switches must be before other parameters.If I need a batch script, I always test in under the command prompt (cmd), so I can see what error messages come out. Quote Link to comment Share on other sites More sharing options...
daniels012 Posted March 20, 2007 Author Report Share Posted March 20, 2007 Thank You Scarecrow man and Pat. As soon as I moved the program switch, it worked fine.Michael Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.