Unsolved
This post is more than 5 years old
3 Posts
0
1855
May 9th, 2011 14:00
Unarchive a specific path
Hello,
I had a typo in one of my exclusion rules and I have mistakenly archived some specific directories that impacts performance of an application. I need to un-archive these specific directories. Is there an easier way to do this than to make a copy of the directory using Windows Explorer?
No Events found!



rippey2
1 Message
0
December 11th, 2011 05:00
The only was I found was to copy and paste the folder, which you have already tried. Currently there is no way to choose a specific folder to recall. Would be a nice option though.
halls1
25 Posts
1
December 12th, 2011 06:00
One method is to use a find command to walk the directory tree. Make sure the recall policy is set to full recall, instead of passthrough, while this command is run. Here is the CLI for Windows.
dir /b /s Z: | findstr /off /f:/ zebraspots
(Z: is mapped drive letter and can be full path to directory on drive letter. zerbraspots is an obscure name to search for.)