Backup/kopieersoftware tbv externe harde schijf

Pagina: 1
Acties:
  • 248 views sinds 30-01-2008

  • Jivecar
  • Registratie: December 2001
  • Laatst online: 12-11-2025
Ik ben op zoek naar backup of kopieersoftware waarmee ik vooraf ingestelde mappen/bestanden op vaste momenten (of adhoc wanneer ik dat wil) naar een externe harde schijf kan kopieren.

In het verleden heb ik wel eens software hiervoor gehad maar die had de nare neiging om tweezijdig te kopieeren ook al stond dat uitgeschakeld. Dit is nu niet de bedoeling.

Weet iemand van jullie een goed software pakket? Het mag dus ook in de vorm van backupsoftware zijn.

Intel P4D-2800@2800, Asus P4P800-SE, 1024MB Corsair, Asus v9999/TD, Maxtor DiamondMax 10 250GB, Western Digital 600BB 60GB, Pioneer DVDR, HP 9150, Soundblaster Audigy. + Toshiba E400......


Verwijderd

Backup exec is een pakket waarmee het kan. Je kan ook een NT backup job maken met een batch bestanden in je geplande taken

  • Jivecar
  • Registratie: December 2001
  • Laatst online: 12-11-2025
OK; Backup Exec ken ik nog uit de tapestreamer tijd....
Zijn er nog simpelere programma's? NT backup job is geen optie, draai nog op Win ME.

Intel P4D-2800@2800, Asus P4P800-SE, 1024MB Corsair, Asus v9999/TD, Maxtor DiamondMax 10 250GB, Western Digital 600BB 60GB, Pioneer DVDR, HP 9150, Soundblaster Audigy. + Toshiba E400......


Verwijderd

Probeer de freeware versie van SyncBack eens. Ondersteunt zowel synchroniseren als backup.

http://www.2brightsparks.com/

  • mjax
  • Registratie: September 2000
  • Laatst online: 28-07 20:20
Met een simpel batch bestand krijg je dit ook voor elkaar. De truc zit 'm in de uitgebreide switches van het xcopy commando. Ik gebruik hier een script voor het backuppen naar een externe harddisk.

Voorbeeldje uit m'n backup bestand:

code:
1
xcopy "E:\Favorites\*.*" "L:\Data\Favorites" /D /E /C /I /Q /H /R /K /Y


Handige tools om in dit script te gebruiken zijn:

• taskkill (gebruik ik om Outlook af te sluiten voor het backuppen van de PST file)
PsService (gebruik ik om MySQL af te sluiten voor het backuppen van de database

Verwijderd

mjax schreef op maandag 14 februari 2005 @ 16:59:
Met een simpel batch bestand krijg je dit ook voor elkaar. De truc zit 'm in de uitgebreide switches van het xcopy commando. Ik gebruik hier een script voor het backuppen naar een externe harddisk.

Voorbeeldje uit m'n backup bestand:

code:
1
xcopy "E:\Favorites\*.*" "L:\Data\Favorites" /D /E /C /I /Q /H /R /K /Y
okej ik snap de code een beejte maar waarvoor staat /D /E /C /I /Q /H /R /K /Y wat doet dat ..

  • mjax
  • Registratie: September 2000
  • Laatst online: 28-07 20:20
Verwijderd schreef op vrijdag 18 februari 2005 @ 11:49:
okej ik snap de code een beejte maar waarvoor staat /D /E /C /I /Q /H /R /K /Y wat doet dat ..
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W]
                           [/C] [/I] [/Q] [/F] [/L] [/G] [/H] [/R] [/T] [/U]
                           [/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z]
                           [/EXCLUDE:file1[+file2][+file3]...]

  source       Specifies the file(s) to copy.
  destination  Specifies the location and/or name of new files.
  /A           Copies only files with the archive attribute set,
               doesn't change the attribute.
  /M           Copies only files with the archive attribute set,
               turns off the archive attribute.
  /D:m-d-y     Copies files changed on or after the specified date.
               If no date is given, copies only those files whose
               source time is newer than the destination time.
  /EXCLUDE:file1[+file2][+file3]...
               Specifies a list of files containing strings.  Each string
               should be in a separate line in the files.  When any of the
               strings match any part of the absolute path of the file to be
               copied, that file will be excluded from being copied.  For
               example, specifying a string like \obj\ or .obj will exclude
               all files underneath the directory obj or all files with the
               .obj extension respectively.
  /P           Prompts you before creating each destination file.
  /S           Copies directories and subdirectories except empty ones.
  /E           Copies directories and subdirectories, including empty ones.
               Same as /S /E. May be used to modify /T.
  /V           Verifies each new file.
  /W           Prompts you to press a key before copying.
  /C           Continues copying even if errors occur.
  /I           If destination does not exist and copying more than one file,
               assumes that destination must be a directory.
  /Q           Does not display file names while copying.
  /F           Displays full source and destination file names while copying.
  /L           Displays files that would be copied.
  /G           Allows the copying of encrypted files to destination that does
               not support encryption.
  /H           Copies hidden and system files also.
  /R           Overwrites read-only files.
  /T           Creates directory structure, but does not copy files. Does not
               include empty directories or subdirectories. /T /E includes
               empty directories and subdirectories.
  /U           Copies only files that already exist in destination.
  /K           Copies attributes. Normal Xcopy will reset read-only attributes.
  /N           Copies using the generated short names.
  /O           Copies file ownership and ACL information.
  /X           Copies file audit settings (implies /O).
  /Y           Suppresses prompting to confirm you want to overwrite an
               existing destination file.
  /-Y          Causes prompting to confirm you want to overwrite an
               existing destination file.
  /Z           Copies networked files in restartable mode.

The switch /Y may be preset in the COPYCMD environment variable.
This may be overridden with /-Y on the command line.

  • Spider.007
  • Registratie: December 2000
  • Niet online

Spider.007

* Tetragrammaton

Tjah; dit is toch best een simpel onderwerp. Een zoektoch op Google levert je voldoende hits op over bestaande software; terwijl er ook voldoende te vinden is over een custom oplossing in een batch file :) Kwestie van Googlen en dan kun je er ongetwijfeld zelf wel wat moois van maken :)

---
Prozium - The great nepenthe. Opiate of our masses. Glue of our great society. Salve and salvation, it has delivered us from pathos, from sorrow, the deepest chasms of melancholy and hate

Pagina: 1

Dit topic is gesloten.