Well, the problem is that Windows now uses a full image backup, as you've
discovered. To really accomplish what you're asking for, you pretty much
have to go to some other third party solution. Or, even better, my personal
favourite, Windows Home Server. This is really where WHS shines. It does a
full backup every night, but ONLY backs up the files that have changed. And
it has a full image of your HD so it can restore in minutes, versus hours.
And is completely and totally painless to set up. WHS has other features
that can be quite useful, and a whole host of add-ins to give additional
functionality. But to me, where it really shines above all the rest is as a
Windows client backup solution. And I've written a whole heck of a lot of
backup chapters in the last 19 years.
--
Charlie.
http://msmvps.com/blogs/russel
"Richard" <> wrote in message
news:...
> Jerry,
>
> Thanks for the quick response. XCOPY will "copy" the files from the
> "source" to the "destination". I really don't want to do that because of
> the number of files that are on the source drive and the time it takes to
> complete. I would rather use a "backup" method which is faster and takes
> less disc space. I did notice that Task Scheduler has "robocopy.exe" which
> I would think does the same thing as "XCOPY". I could use that rather than
> writing a batch file, however, I would still have the problem of knowing
> how to enter the "source" and "destination" locations into the Task
> Scheduler forms. I'd much prefer a "backup" solution. If I went with a
> "copy" solution, I could just use "drag and drop" before I go to bed each
> night.
> --
> Thank You
>
> "Jeff Gaines" <> wrote in message
> news
...
>> On 04/12/2009 in message <#> Richard
>> wrote:
>>
>>>1. Can someone help me in accomplishing scenario 2 using Task Scheduler,
>>>or
>>>
>>>2. Instruct me how to accomplish my objectives using other Windows 7
>>>tools. I really don't want to purchase alternative software or use
>>>multiple applications, requiring me to remember what application is
>>>backing up which sets of files.
>>
>> Good old XCOPY is still around and working well 
>>
>> A batch file with:
>> REM Send To
>> xcopy "c:\Documents and Settings\JeffWS\SendTo\*.*" "d:\PData\SendTo\" /D
>> /S /E /C /I /Q /F /H /R /V /Y > "C:\Temp\SendTo.log"
>>
>> Change the source and destination (and log file destination if
>> appropriate) and run it from the task scheduler.
>>
>> NB - If you run XCOPY /? it will provide help with the flags.
>>
>>
>> --
>> Jeff Gaines Dorset UK
>> That's an amazing invention but who would ever want to use one of them?
>> (President Hayes speaking to Alexander Graham Bell on the invention of
>> the telephone)
>