Search found 3 matches

by D3l1v3ryb01
04 Sep 2013 09:19
Forum: DOS Batch Forum
Topic: First effort could use some tips.
Replies: 8
Views: 6529

Re: First effort could use some tips.

I'm so hopelessly confused lol. I tried to take ya'lls advice, but I still can't get it right. Figured I'd give you the code that works, and then the code that isn't. Working Code, automatically copies everything. No options. @echo off :: variables color a cls md G:\Backup /min SET odrive=%odrive:~0...
by D3l1v3ryb01
03 Sep 2013 21:36
Forum: DOS Batch Forum
Topic: First effort could use some tips.
Replies: 8
Views: 6529

Re: First effort could use some tips.

Try this to get your input and branch afterward: Make your labels a single word as below: set "choice=" set /p "choice= {1,2,3,4,5} " if "%choice%"=="1" goto :Backup_Documents if "%choice%"=="2" goto :Backup_Pictures if "%choice%"...
by D3l1v3ryb01
03 Sep 2013 18:02
Forum: DOS Batch Forum
Topic: First effort could use some tips.
Replies: 8
Views: 6529

First effort could use some tips.

Hey folks. Decided to try and learn how to make some batch files. The idea came when my laptop fried and I hadn't got anything backed up. So, after I got my replacement laptop, I decided I wanted to make my own little "program" to backup my files for me. Along with my familys. Now, I know ...