Besdir Posted August 22, 2005 Posted August 22, 2005 Hi I want to create a directory in my C drive and transfer my mp3s there during my unattended setup. I am using batch script and I was wondering if anyone can help with this script.thank you
Martin Zugec Posted August 22, 2005 Posted August 22, 2005 I am prefering using RoboCopy from Resource Kit (www.microsoft.com). What is your problem exactly?
Besdir Posted August 22, 2005 Author Posted August 22, 2005 I cannot seem to write the script to do create the directory and copy the files.This is what i writeecho.start md Mp3copy %systemdrive%\install\mp3 c:\mp3the result is a "folder cannot be created"faulty syntax.please help
MHz Posted August 22, 2005 Posted August 22, 2005 (edited) Use this to create the directory first.MD %systemdrive%\mp3 Edited August 22, 2005 by MHz
Yzöwl Posted August 22, 2005 Posted August 22, 2005 (edited) You could just use the built in XcopyXCOPY %SYSTEMDRIVE%\install\mp3 %SYSTEMDRIVE%\mp3 /ECIQHYHowever, why all the bother, just place the mp3 folder directly into \$OEM$\$1 Edited August 31, 2005 by Yzöwl
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