Trying to re-write redirected home drives

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
HelpMe
Posts: 2
Joined: Wed Feb 12, 2020 9:06 am

Trying to re-write redirected home drives

Post by HelpMe »

Hi, I'm trying to rewrite folders stored on my desktop so that it doesn't find the csc path as they're offline files

Trying to follow

viewtopic.php?f=4&t=6569&p=20313&hilit=csc#p20313
and
viewtopic.php?t=5933#p17001

but can't find the right syntax, can anyone help please?

Code: Select all

auto_remove_offline_ntfs_volumes=0

ntfs_volume_guids="\\\\?\\Volume{f98866c1-4642-42ee-b3dc-876876876876}","\\\\?\\Volume{f98866c1-4642-42ee-b3dc-876876876876}"
ntfs_volume_paths="C:","C:\\Users\\john\\"
ntfs_volume_roots="","Windows\\CSC\\v2.0.6\\namespace\\john"
ntfs_volume_includes=1,1
ntfs_volume_load_recent_changes=0,0
ntfs_volume_include_onlys="",""
ntfs_volume_monitors=1,1

exclude_folders="C:\\Windows\\CSC\\v2.0.6\\namespace\\company\\files\\john"
void
Developer
Posts: 15096
Joined: Fri Oct 16, 2009 11:31 pm

Re: Trying to re-write redirected home drives

Post by void »

Are you using mapped network drives or UNC paths? (eg: J: drive or \\server\share or \\company\files)

Please try the following:


auto_remove_offline_ntfs_volumes=0

ntfs_volume_guids="\\\\?\\Volume{f98866c1-4642-42ee-b3dc-876876876876}","\\\\?\\Volume{f98866c1-4642-42ee-b3dc-876876876876}"
ntfs_volume_paths="C:","\\\\server\\share"
ntfs_volume_roots="","Windows\\CSC\\v2.0.6\\namespace\\company\\files\\john"
ntfs_volume_includes=1,1
ntfs_volume_load_recent_changes=0,0
ntfs_volume_include_onlys="",""
ntfs_volume_monitors=1,1

exclude_folders="C:\\Windows\\CSC\\v2.0.6\\namespace\\company\\files\\john"


Please make sure the path exists:
C:\Windows\CSC\v2.0.6
-use the same v2.0.6 as listed in C:\Windows\CSC.
HelpMe
Posts: 2
Joined: Wed Feb 12, 2020 9:06 am

Re: Trying to re-write redirected home drives

Post by HelpMe »

Perfect, thank you so much.
Post Reply