F5F Stay Refreshed Software Operating Systems Additional Files

Additional Files

Additional Files

E
EaseAce
Member
74
11-18-2023, 07:00 PM
#1
I was thinking about a backup solution that lets you pick specific folders and save them to a certain place, only backing up files that have changed since the last backup. It shouldn’t run automatically; you’d need to trigger it manually since your computer isn’t on all the time.
E
EaseAce
11-18-2023, 07:00 PM #1

I was thinking about a backup solution that lets you pick specific folders and save them to a certain place, only backing up files that have changed since the last backup. It shouldn’t run automatically; you’d need to trigger it manually since your computer isn’t on all the time.

R
Rotem5590
Junior Member
26
11-18-2023, 07:00 PM
#2
Backup for Windows?
R
Rotem5590
11-18-2023, 07:00 PM #2

Backup for Windows?

I
IzNix
Junior Member
33
11-18-2023, 07:00 PM
#3
You handle tasks independently using DOS, combined with XCopy.
I
IzNix
11-18-2023, 07:00 PM #3

You handle tasks independently using DOS, combined with XCopy.

B
bxrfa
Junior Member
9
11-18-2023, 07:00 PM
#4
B
bxrfa
11-18-2023, 07:00 PM #4

P
polo123321
Member
163
11-18-2023, 07:00 PM
#5
Here is the revised version of your text:

This is the script for my project. I'm using xcopy with several options to copy files and folders. It includes exclusions, hides certain items, and uses specific flags so Windows recognizes them properly. The attrib command makes them visible, but without those flags they would appear hidden.
P
polo123321
11-18-2023, 07:00 PM #5

Here is the revised version of your text:

This is the script for my project. I'm using xcopy with several options to copy files and folders. It includes exclusions, hides certain items, and uses specific flags so Windows recognizes them properly. The attrib command makes them visible, but without those flags they would appear hidden.

T
TheAlexZ_
Member
210
11-18-2023, 07:00 PM
#6
You've already configured everything and are beginning your backups. I'm still reviewing the parameters but I'm satisfied with /s /e /d and /h. Your current script:

@ Echo off xcopy k:\Lightroom "e:\Backup files\LightRoom" /s /e /d /h
xcopy k:\Pictures "e:\Backup files\Pictures" /s /e /d /h
xcopy K:\Backups "e:\Backup files\Backups" /s /e /d /h
xcopy k:\Computer "e:\Backup files\Computer" /s /e /d /h
xcopy K:\DAD "e:\Backup files\DAD" /s /e /d /h
xcopy K:\Editing "e:\Backup files\Editing" /s /e /d /h

Proceed.
T
TheAlexZ_
11-18-2023, 07:00 PM #6

You've already configured everything and are beginning your backups. I'm still reviewing the parameters but I'm satisfied with /s /e /d and /h. Your current script:

@ Echo off xcopy k:\Lightroom "e:\Backup files\LightRoom" /s /e /d /h
xcopy k:\Pictures "e:\Backup files\Pictures" /s /e /d /h
xcopy K:\Backups "e:\Backup files\Backups" /s /e /d /h
xcopy k:\Computer "e:\Backup files\Computer" /s /e /d /h
xcopy K:\DAD "e:\Backup files\DAD" /s /e /d /h
xcopy K:\Editing "e:\Backup files\Editing" /s /e /d /h

Proceed.