PC Review


Reply
Thread Tools Rate Thread

Backing up a web

 
 
James Ivey
Guest
Posts: n/a
 
      26th Nov 2006
I've got a 2nd harddrive (F that I use as a backup drive. Got a little
DOS routine that runs every night and backs up critical folders... My Docs,
email, etc.

But it doesn't copy my Frontpage web in the My Webs folder..? whats up with
that?

Whats the best way to simply back up your web?

Here's the backup routine:

rd f:\backup\desktop /s /q
rd f:\backup\mydocs /s /q
rd f:\backup\myfavorites /s /q
md f:\backup\desktop
md f:\backup\mydocs
md f:\backup\myfavorites
xcopy "c:\documents and settings\james ivey\favorites" f:\backup\myfavorites
/s /e
xcopy "c:\documents and settings\james ivey\desktop" f:\backup\desktop /s /e
xcopy "c:\documents and settings\james ivey\my documents" f:\backup\mydocs
/s /e

James


 
Reply With Quote
 
 
 
 
Thomas A. Rowe
Guest
Posts: n/a
 
      26th Nov 2006
If you are using Windows XP, use the Windows NT Backup application that comes with Windows XP.
Automatically installed under XP Pro, must be user installed under XP Home.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


"James Ivey" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I've got a 2nd harddrive (F that I use as a backup drive. Got a little
> DOS routine that runs every night and backs up critical folders... My Docs,
> email, etc.
>
> But it doesn't copy my Frontpage web in the My Webs folder..? whats up with
> that?
>
> Whats the best way to simply back up your web?
>
> Here's the backup routine:
>
> rd f:\backup\desktop /s /q
> rd f:\backup\mydocs /s /q
> rd f:\backup\myfavorites /s /q
> md f:\backup\desktop
> md f:\backup\mydocs
> md f:\backup\myfavorites
> xcopy "c:\documents and settings\james ivey\favorites" f:\backup\myfavorites
> /s /e
> xcopy "c:\documents and settings\james ivey\desktop" f:\backup\desktop /s /e
> xcopy "c:\documents and settings\james ivey\my documents" f:\backup\mydocs
> /s /e
>
> James
>
>



 
Reply With Quote
 
James Ivey
Guest
Posts: n/a
 
      26th Nov 2006
Thanks Thomas, but I'm on Win2000 Pro.

I added a /H to the XCOPY command and that got it.

I appreciate your reply.

James

"Thomas A. Rowe" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> If you are using Windows XP, use the Windows NT Backup application that

comes with Windows XP.
> Automatically installed under XP Pro, must be user installed under XP

Home.
>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
>
> http://www.Ecom-Data.com
> ==============================================
>
>
> "James Ivey" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > I've got a 2nd harddrive (F that I use as a backup drive. Got a

little
> > DOS routine that runs every night and backs up critical folders... My

Docs,
> > email, etc.
> >
> > But it doesn't copy my Frontpage web in the My Webs folder..? whats up

with
> > that?
> >
> > Whats the best way to simply back up your web?
> >
> > Here's the backup routine:
> >
> > rd f:\backup\desktop /s /q
> > rd f:\backup\mydocs /s /q
> > rd f:\backup\myfavorites /s /q
> > md f:\backup\desktop
> > md f:\backup\mydocs
> > md f:\backup\myfavorites
> > xcopy "c:\documents and settings\james ivey\favorites"

f:\backup\myfavorites
> > /s /e
> > xcopy "c:\documents and settings\james ivey\desktop" f:\backup\desktop

/s /e
> > xcopy "c:\documents and settings\james ivey\my documents"

f:\backup\mydocs
> > /s /e
> >
> > James
> >
> >

>
>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      26th Nov 2006
Check to see it Windows 2000 Pro can with a Backup application (NT Backup) this is a lot better then
using the copy or xcopy command, as it retains file and folder permissions, etc.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


"James Ivey" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Thanks Thomas, but I'm on Win2000 Pro.
>
> I added a /H to the XCOPY command and that got it.
>
> I appreciate your reply.
>
> James
>
> "Thomas A. Rowe" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> If you are using Windows XP, use the Windows NT Backup application that

> comes with Windows XP.
>> Automatically installed under XP Pro, must be user installed under XP

> Home.
>>
>> --
>> ==============================================
>> Thomas A. Rowe
>> Microsoft MVP - FrontPage
>>
>> http://www.Ecom-Data.com
>> ==============================================
>>
>>
>> "James Ivey" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > I've got a 2nd harddrive (F that I use as a backup drive. Got a

> little
>> > DOS routine that runs every night and backs up critical folders... My

> Docs,
>> > email, etc.
>> >
>> > But it doesn't copy my Frontpage web in the My Webs folder..? whats up

> with
>> > that?
>> >
>> > Whats the best way to simply back up your web?
>> >
>> > Here's the backup routine:
>> >
>> > rd f:\backup\desktop /s /q
>> > rd f:\backup\mydocs /s /q
>> > rd f:\backup\myfavorites /s /q
>> > md f:\backup\desktop
>> > md f:\backup\mydocs
>> > md f:\backup\myfavorites
>> > xcopy "c:\documents and settings\james ivey\favorites"

> f:\backup\myfavorites
>> > /s /e
>> > xcopy "c:\documents and settings\james ivey\desktop" f:\backup\desktop

> /s /e
>> > xcopy "c:\documents and settings\james ivey\my documents"

> f:\backup\mydocs
>> > /s /e
>> >
>> > James
>> >
>> >

>>
>>

>
>



 
Reply With Quote
 
James Ivey
Guest
Posts: n/a
 
      26th Nov 2006
Thanks again Thomas.

I've never used the Backup program that comes with Windows, because it has
always bugged me that it creates its own file (a .bkf file), rather than
simply copying the files and folders. What happens when you switch
operating systems? Will you still be able to restore that .bkf file?

James


"Thomas A. Rowe" <(E-Mail Removed)> wrote in message
news:eOD$(E-Mail Removed)...
> Check to see it Windows 2000 Pro can with a Backup application (NT Backup)

this is a lot better then
> using the copy or xcopy command, as it retains file and folder

permissions, etc.
>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
>
> http://www.Ecom-Data.com
> ==============================================
>
>
> "James Ivey" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Thanks Thomas, but I'm on Win2000 Pro.
> >
> > I added a /H to the XCOPY command and that got it.
> >
> > I appreciate your reply.
> >
> > James
> >
> > "Thomas A. Rowe" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> >> If you are using Windows XP, use the Windows NT Backup application that

> > comes with Windows XP.
> >> Automatically installed under XP Pro, must be user installed under XP

> > Home.
> >>
> >> --
> >> ==============================================
> >> Thomas A. Rowe
> >> Microsoft MVP - FrontPage
> >>
> >> http://www.Ecom-Data.com
> >> ==============================================
> >>
> >>
> >> "James Ivey" <(E-Mail Removed)> wrote in message
> >> news:(E-Mail Removed)...
> >> > I've got a 2nd harddrive (F that I use as a backup drive. Got a

> > little
> >> > DOS routine that runs every night and backs up critical folders... My

> > Docs,
> >> > email, etc.
> >> >
> >> > But it doesn't copy my Frontpage web in the My Webs folder..? whats

up
> > with
> >> > that?
> >> >
> >> > Whats the best way to simply back up your web?
> >> >
> >> > Here's the backup routine:
> >> >
> >> > rd f:\backup\desktop /s /q
> >> > rd f:\backup\mydocs /s /q
> >> > rd f:\backup\myfavorites /s /q
> >> > md f:\backup\desktop
> >> > md f:\backup\mydocs
> >> > md f:\backup\myfavorites
> >> > xcopy "c:\documents and settings\james ivey\favorites"

> > f:\backup\myfavorites
> >> > /s /e
> >> > xcopy "c:\documents and settings\james ivey\desktop"

f:\backup\desktop
> > /s /e
> >> > xcopy "c:\documents and settings\james ivey\my documents"

> > f:\backup\mydocs
> >> > /s /e
> >> >
> >> > James
> >> >
> >> >
> >>
> >>

> >
> >

>
>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      27th Nov 2006
The Windows NT Backup can be restored to Windows 2000 Pro / Server, Windows XP, Windows 2003. Each
version has been updated but can read prior version files.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


"James Ivey" <(E-Mail Removed)> wrote in message
news:e%(E-Mail Removed)...
> Thanks again Thomas.
>
> I've never used the Backup program that comes with Windows, because it has
> always bugged me that it creates its own file (a .bkf file), rather than
> simply copying the files and folders. What happens when you switch
> operating systems? Will you still be able to restore that .bkf file?
>
> James
>
>
> "Thomas A. Rowe" <(E-Mail Removed)> wrote in message
> news:eOD$(E-Mail Removed)...
>> Check to see it Windows 2000 Pro can with a Backup application (NT Backup)

> this is a lot better then
>> using the copy or xcopy command, as it retains file and folder

> permissions, etc.
>>
>> --
>> ==============================================
>> Thomas A. Rowe
>> Microsoft MVP - FrontPage
>>
>> http://www.Ecom-Data.com
>> ==============================================
>>
>>
>> "James Ivey" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > Thanks Thomas, but I'm on Win2000 Pro.
>> >
>> > I added a /H to the XCOPY command and that got it.
>> >
>> > I appreciate your reply.
>> >
>> > James
>> >
>> > "Thomas A. Rowe" <(E-Mail Removed)> wrote in message
>> > news:(E-Mail Removed)...
>> >> If you are using Windows XP, use the Windows NT Backup application that
>> > comes with Windows XP.
>> >> Automatically installed under XP Pro, must be user installed under XP
>> > Home.
>> >>
>> >> --
>> >> ==============================================
>> >> Thomas A. Rowe
>> >> Microsoft MVP - FrontPage
>> >>
>> >> http://www.Ecom-Data.com
>> >> ==============================================
>> >>
>> >>
>> >> "James Ivey" <(E-Mail Removed)> wrote in message
>> >> news:(E-Mail Removed)...
>> >> > I've got a 2nd harddrive (F that I use as a backup drive. Got a
>> > little
>> >> > DOS routine that runs every night and backs up critical folders... My
>> > Docs,
>> >> > email, etc.
>> >> >
>> >> > But it doesn't copy my Frontpage web in the My Webs folder..? whats

> up
>> > with
>> >> > that?
>> >> >
>> >> > Whats the best way to simply back up your web?
>> >> >
>> >> > Here's the backup routine:
>> >> >
>> >> > rd f:\backup\desktop /s /q
>> >> > rd f:\backup\mydocs /s /q
>> >> > rd f:\backup\myfavorites /s /q
>> >> > md f:\backup\desktop
>> >> > md f:\backup\mydocs
>> >> > md f:\backup\myfavorites
>> >> > xcopy "c:\documents and settings\james ivey\favorites"
>> > f:\backup\myfavorites
>> >> > /s /e
>> >> > xcopy "c:\documents and settings\james ivey\desktop"

> f:\backup\desktop
>> > /s /e
>> >> > xcopy "c:\documents and settings\james ivey\my documents"
>> > f:\backup\mydocs
>> >> > /s /e
>> >> >
>> >> > James
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >

>>
>>

>
>



 
Reply With Quote
 
James Ivey
Guest
Posts: n/a
 
      27th Nov 2006
I'll give it a try then. I appreciate your help.

Best regards,

James


"Thomas A. Rowe" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> The Windows NT Backup can be restored to Windows 2000 Pro / Server,
> Windows XP, Windows 2003. Each version has been updated but can read prior
> version files.
>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
>
> http://www.Ecom-Data.com
> ==============================================
>
>
> "James Ivey" <(E-Mail Removed)> wrote in message
> news:e%(E-Mail Removed)...
>> Thanks again Thomas.
>>
>> I've never used the Backup program that comes with Windows, because it
>> has
>> always bugged me that it creates its own file (a .bkf file), rather than
>> simply copying the files and folders. What happens when you switch
>> operating systems? Will you still be able to restore that .bkf file?
>>
>> James
>>
>>
>> "Thomas A. Rowe" <(E-Mail Removed)> wrote in message
>> news:eOD$(E-Mail Removed)...
>>> Check to see it Windows 2000 Pro can with a Backup application (NT
>>> Backup)

>> this is a lot better then
>>> using the copy or xcopy command, as it retains file and folder

>> permissions, etc.
>>>
>>> --
>>> ==============================================
>>> Thomas A. Rowe
>>> Microsoft MVP - FrontPage
>>>
>>> http://www.Ecom-Data.com
>>> ==============================================
>>>
>>>
>>> "James Ivey" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>> > Thanks Thomas, but I'm on Win2000 Pro.
>>> >
>>> > I added a /H to the XCOPY command and that got it.
>>> >
>>> > I appreciate your reply.
>>> >
>>> > James
>>> >
>>> > "Thomas A. Rowe" <(E-Mail Removed)> wrote in message
>>> > news:(E-Mail Removed)...
>>> >> If you are using Windows XP, use the Windows NT Backup application
>>> >> that
>>> > comes with Windows XP.
>>> >> Automatically installed under XP Pro, must be user installed under XP
>>> > Home.
>>> >>
>>> >> --
>>> >> ==============================================
>>> >> Thomas A. Rowe
>>> >> Microsoft MVP - FrontPage
>>> >>
>>> >> http://www.Ecom-Data.com
>>> >> ==============================================
>>> >>
>>> >>
>>> >> "James Ivey" <(E-Mail Removed)> wrote in message
>>> >> news:(E-Mail Removed)...
>>> >> > I've got a 2nd harddrive (F that I use as a backup drive. Got a
>>> > little
>>> >> > DOS routine that runs every night and backs up critical folders...
>>> >> > My
>>> > Docs,
>>> >> > email, etc.
>>> >> >
>>> >> > But it doesn't copy my Frontpage web in the My Webs folder..?
>>> >> > whats

>> up
>>> > with
>>> >> > that?
>>> >> >
>>> >> > Whats the best way to simply back up your web?
>>> >> >
>>> >> > Here's the backup routine:
>>> >> >
>>> >> > rd f:\backup\desktop /s /q
>>> >> > rd f:\backup\mydocs /s /q
>>> >> > rd f:\backup\myfavorites /s /q
>>> >> > md f:\backup\desktop
>>> >> > md f:\backup\mydocs
>>> >> > md f:\backup\myfavorites
>>> >> > xcopy "c:\documents and settings\james ivey\favorites"
>>> > f:\backup\myfavorites
>>> >> > /s /e
>>> >> > xcopy "c:\documents and settings\james ivey\desktop"

>> f:\backup\desktop
>>> > /s /e
>>> >> > xcopy "c:\documents and settings\james ivey\my documents"
>>> > f:\backup\mydocs
>>> >> > /s /e
>>> >> >
>>> >> > James
>>> >> >
>>> >> >
>>> >>
>>> >>
>>> >
>>> >
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      27th Nov 2006
You could also try zipping the entire web folder.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


"James Ivey" <(E-Mail Removed)> wrote in message
news:OkaF%(E-Mail Removed)...
> I'll give it a try then. I appreciate your help.
>
> Best regards,
>
> James
>
>
> "Thomas A. Rowe" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>> The Windows NT Backup can be restored to Windows 2000 Pro / Server, Windows XP, Windows 2003.
>> Each version has been updated but can read prior version files.
>>
>> --
>> ==============================================
>> Thomas A. Rowe
>> Microsoft MVP - FrontPage
>>
>> http://www.Ecom-Data.com
>> ==============================================
>>
>>
>> "James Ivey" <(E-Mail Removed)> wrote in message
>> news:e%(E-Mail Removed)...
>>> Thanks again Thomas.
>>>
>>> I've never used the Backup program that comes with Windows, because it has
>>> always bugged me that it creates its own file (a .bkf file), rather than
>>> simply copying the files and folders. What happens when you switch
>>> operating systems? Will you still be able to restore that .bkf file?
>>>
>>> James
>>>
>>>
>>> "Thomas A. Rowe" <(E-Mail Removed)> wrote in message
>>> news:eOD$(E-Mail Removed)...
>>>> Check to see it Windows 2000 Pro can with a Backup application (NT Backup)
>>> this is a lot better then
>>>> using the copy or xcopy command, as it retains file and folder
>>> permissions, etc.
>>>>
>>>> --
>>>> ==============================================
>>>> Thomas A. Rowe
>>>> Microsoft MVP - FrontPage
>>>>
>>>> http://www.Ecom-Data.com
>>>> ==============================================
>>>>
>>>>
>>>> "James Ivey" <(E-Mail Removed)> wrote in message
>>>> news:(E-Mail Removed)...
>>>> > Thanks Thomas, but I'm on Win2000 Pro.
>>>> >
>>>> > I added a /H to the XCOPY command and that got it.
>>>> >
>>>> > I appreciate your reply.
>>>> >
>>>> > James
>>>> >
>>>> > "Thomas A. Rowe" <(E-Mail Removed)> wrote in message
>>>> > news:(E-Mail Removed)...
>>>> >> If you are using Windows XP, use the Windows NT Backup application that
>>>> > comes with Windows XP.
>>>> >> Automatically installed under XP Pro, must be user installed under XP
>>>> > Home.
>>>> >>
>>>> >> --
>>>> >> ==============================================
>>>> >> Thomas A. Rowe
>>>> >> Microsoft MVP - FrontPage
>>>> >>
>>>> >> http://www.Ecom-Data.com
>>>> >> ==============================================
>>>> >>
>>>> >>
>>>> >> "James Ivey" <(E-Mail Removed)> wrote in message
>>>> >> news:(E-Mail Removed)...
>>>> >> > I've got a 2nd harddrive (F that I use as a backup drive. Got a
>>>> > little
>>>> >> > DOS routine that runs every night and backs up critical folders... My
>>>> > Docs,
>>>> >> > email, etc.
>>>> >> >
>>>> >> > But it doesn't copy my Frontpage web in the My Webs folder..? whats
>>> up
>>>> > with
>>>> >> > that?
>>>> >> >
>>>> >> > Whats the best way to simply back up your web?
>>>> >> >
>>>> >> > Here's the backup routine:
>>>> >> >
>>>> >> > rd f:\backup\desktop /s /q
>>>> >> > rd f:\backup\mydocs /s /q
>>>> >> > rd f:\backup\myfavorites /s /q
>>>> >> > md f:\backup\desktop
>>>> >> > md f:\backup\mydocs
>>>> >> > md f:\backup\myfavorites
>>>> >> > xcopy "c:\documents and settings\james ivey\favorites"
>>>> > f:\backup\myfavorites
>>>> >> > /s /e
>>>> >> > xcopy "c:\documents and settings\james ivey\desktop"
>>> f:\backup\desktop
>>>> > /s /e
>>>> >> > xcopy "c:\documents and settings\james ivey\my documents"
>>>> > f:\backup\mydocs
>>>> >> > /s /e
>>>> >> >
>>>> >> > James
>>>> >> >
>>>> >> >
>>>> >>
>>>> >>
>>>> >
>>>> >
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Trevor L.
Guest
Posts: n/a
 
      27th Nov 2006
Thomas A. Rowe wrote:
> You could also try zipping the entire web folder.


That's what I do.

I have a local disk copy named myweb. On this all files and folders are
zipped to "myweb.zip".

Then I takes a copy of everything to mywebcopy (incuding "myweb.zip").

Which gives a few backups of the entire web

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Backing up =?Utf-8?B?TGVubnk=?= Microsoft Outlook BCM 4 18th Nov 2006 02:08 AM
Backing up everything =?Utf-8?B?c3RhY3lqaGFza2lucw==?= Microsoft Outlook Discussion 3 15th Apr 2005 08:56 PM
backing up xp =?Utf-8?B?c2Ftb29u?= Windows XP Performance 1 3rd Mar 2005 02:53 PM
backing up =?Utf-8?B?c3BpdjAwNw==?= Microsoft Windows 2000 Active Directory 2 24th Jan 2005 04:37 PM
Backing up to CD rob Microsoft Outlook 2 31st Jan 2004 09:41 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:35 AM.