cancel
Showing results for 
Search instead for 
Did you mean: 

How to Search for Place Holders

Murd
Level 3

Just though I would post this as none of my internet searches came back with an answer.

I wanted to know how to identify all the files on a file server that had been archived by EV.

Using PowerShell i come up with this:


$myDir = dir N:\ -recurse
foreach($myfile in $myDir)
{
echo $myfile | Select FullName,Attributes | Where-Object {$_.Attributes -like "*Archive, SparseFile, ReparsePoint, Offline*"}
}


Obviously the output can be directed to anywhere.

Hope this helps the next person looking to find EV archived files on a file server.

2 REPLIES 2

RahulG
Level 6
Employee

also following document would be helpful
http://support.veritas.com/docs/284460

Murd
Level 3
Thanks for that, interesting how support neglected to point me to this document.