I wasn't familiar with the Windows term "user profile" but just now learned a little about profiles.
The values of %userprofile% for each Windows account confirm that the root of each account is in c:\users\<user_name>. Here's what the attrib command shows for c:\users and the directories contained in it:
C:\>attrib Users
R C:\Users
C:\Users>attrib /D *.*
C:\Users\Admin
H C:\Users\All Users
C:\Users\BackupOperator
C:\Users\Beebes
C:\Users\Beebes_Local_1
HR C:\Users\Default
HR C:\Users\Default User
A SH C:\Users\desktop.ini
C:\Users\micro.DESKTOP-DL221HI
R C:\Users\Public
A C:\Users\TESTFILE.TXT
I'm not sure I fully understand how attributes are created or inherited, but I'm assuming that attrib shows the current, effective set of attributes for each folder. (Please correct me if I'm wrong.)
I created a simple CloudBerry backup plan to back up everything in C:\Users (and only C:\Users), with "Do not backup system and hidden files" selected. I expect all C:\Users folders except the ones with H or S attribute to be backed up.
When executed, the plan backed up *no* folders and only one file: TESTFILE.TXT. The CloudBerry log file shows:
2018-03-26 10:10:05,854 [PL] [1] INFO - Include system and hidden: False
2018-03-26 10:10:05,860 [PL] [1] INFO - Searching files with path: C:\Users
2018-03-26 10:10:05,903 [PL] [1] INFO - Directory 'C:\Users\Admin' was skipped as system and hidden files are not included in backup
2018-03-26 10:10:05,910 [PL] [1] INFO - Directory 'C:\Users\BackupOperator' was skipped as system and hidden files are not included in backup
2018-03-26 10:10:05,914 [PL] [1] INFO - Directory 'C:\Users\Beebes' was skipped as system and hidden files are not included in backup
2018-03-26 10:10:05,919 [PL] [1] INFO - Directory 'C:\Users\Beebes_Local_1' was skipped as system and hidden files are not included in backup
2018-03-26 10:10:05,924 [PL] [1] INFO - Directory 'C:\Users\Default' was skipped as system and hidden files are not included in backup
2018-03-26 10:10:05,929 [PL] [1] INFO - Directory 'C:\Users\micro.DESKTOP-DL221HI' was skipped as system and hidden files are not included in backup
2018-03-26 10:10:05,934 [PL] [1] INFO - Directory 'C:\Users\Public' was skipped as system and hidden files are not included in backup
Do I need to learn more about attributes to make this work like I want it to?