hoverhead Posted October 1, 2004 Posted October 1, 2004 Dudes, help me with the batch code I can use for doing the following. It might be very stupid question to you but I do not have any coding background.During unattend install, at the stage where I install my programs, I want to do the following.After a program has been installed I want to copy a specific file from my CD to the folder where the program has been installed.On my cd the file (named AAA) will be placed in the following folder:$oem$\$s1$\Install\Application\ABC\I Want this file named AAA be copied to c:\programs\ABC\ after the program has been installed.What will the code be to use in my batch file.
kenedy Posted October 1, 2004 Posted October 1, 2004 Like this?copy "c:\Install\Application\ABC\AAA" "c:\programs\ABC" /y
Noise Posted October 1, 2004 Posted October 1, 2004 Ummm...COPY AAA C:\programs\AAAYou should have figured this out on your own. Perhaps I'm missing something here.
Noise Posted October 1, 2004 Posted October 1, 2004 $oem$\$s1$\Install\Application\ABC\What's the $s1$ directory off of the $oem$ directory for? I never heard of that.
hoverhead Posted October 1, 2004 Author Posted October 1, 2004 Like this?copy "c:\Install\Application\ABC\AAA" "c:\programs\ABC" /y10x kennedy
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