Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.
We know you are Billrich. All the questionmark smileys in the world won't change that.
I remember this from my childhood. That cat is kind of a *censored*
He's playing a game called IRL. Great graphics, *censored* gameplay.
I got this code to create data folder but somehow it doesn't work perfectlyCode: [Select]@echo offSET date="%date:~6,4%-%date:~0,2%-%date:~2,2%"md D:\2\%date%xcopy /e C:\1\*.* D:\2\%date%@pausethe folder created is D:\2\2010-07-\2my system date format is 07/25/2010 Sun 15:22:52.92
@echo offSET date="%date:~6,4%-%date:~0,2%-%date:~2,2%"md D:\2\%date%xcopy /e C:\1\*.* D:\2\%date%@pause
I'm sorry the thread got off topic.
The regular members never insult those asking for help.
@echo off:: variablesset drive=D:\2SET date="%date:~6,4%-%date:~0,2%-%date:~3,2%"set backupcmd=xcopy /s /c /d /e /h /i /r /k /yecho ### Backing up your Sites directory...%backupcmd% "C:\1" "%drive%\%date%"echo Backup Complete - Your Backup is located at %drive%@pause