Skip to main content
Solved

Laptop Backup content - how to target a folder inside every user profile?

  • September 10, 2026
  • 2 replies
  • 66 views

Forum|alt.badge.img+18

Hi there!

In a laptop plan I need to back up a specific folder that sits directly in the user profile, for example:

C:\Users\<username>\Projects

The machines can have more than one user profile, and I want the folder backed up for each of them.

I noticed the default content uses tokens like \%Desktop% and \%Documents%, so there is clearly a mechanism for resolving the user profile path. But those look like predefined tokens for known folders and I couldn't find one that would let me append my own subfolder, something like \%UserProfile%\Projects.

Is there a token for this, or is a wildcard path like C:\Users\*\Projects the way to go? Or does the plan content have to be defined differently for this kind of case?

Thank you in advance for your contributions!

Best answer by AbdulRahman AlSindiony

Hi ​@drPhil ,

 

you can

  • Use C:\Users\*\Projects to match the Projects folder directly under each user profile.
  • Use C:\Users\**\Projects only if you need to match Projects folders at any subdirectory depth under C:\Users.

Wildcards for the Windows File System Agent

 

Further docs:

Thanks,

Abdu

2 replies

Hi ​@drPhil ,

 

you can

  • Use C:\Users\*\Projects to match the Projects folder directly under each user profile.
  • Use C:\Users\**\Projects only if you need to match Projects folders at any subdirectory depth under C:\Users.

Wildcards for the Windows File System Agent

 

Further docs:

Thanks,

Abdu


Forum|alt.badge.img+18
  • Author
  • Explorer
  • September 11, 2026

Hi ​@AbdulRahman AlSindiony thank you so much for your input!

Indeed, it is as you wrote - I verified this in the lab environment.