Best Blackhat Forum

Full Version: DOS Command: Need Help With My Simple Batch File Assignment Badly
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
1. create a batch file that will fill the entire screen with your name. use diff. colors

2. create a batch file that will create a directory named chanel in drive c: then copy all files in drive c: that ends in .bat to the directory chanel and display all files copied

3. create a batch file that will display all hidden files in drive c:

Please help, I need some answers desperately. :D
so in other words, you want to cheat? why do you have dos homework? it's pretty much obsolete.

3: dir c:\ /a:h (this displays both hidden files and folder. if you just want files, then the path would be c:\*.*)
2: echo off
cls
md c:\chanel
copy c:\*.bat c:\chanel
pause
cd c:/chanel
cls
dir /b
1: not sure what you mean by different colors because there is background and text. also once you change a color for text, you change all the existing text so there can't be different text colors on a screen. i can think of a few ways to do this but not understanding the instructions fully.

dos- the good ol' days! hope i did it right. test it out for yourself.....
I appreciate you taking the time to respond California Kid. It is better late to give a rep than never to show my love. :)
Reference URL's