- Files in C:/ProgramData/Microsoft/Search/Data/Applications/Windows
don't show up in snapshot, they look like Reparse point
only the windows explorers show that the file is a reparse point
command line tools don't
as estimate don't use VSS, this make a diff between both
- reset "nb" to zero to always show the 10 first files that are in
the backup but not in estimate
if (exists $content{$f}) {
$content{$f} = 0;
} else {
- print "ERROR: [$f] not found in job log\n";
- $estat=1;
- $nb++;
+ if ($f =~ m=C:/ProgramData/Microsoft/Search/Data/Applications/Windows=i) {
+ # the files in thes directories looks to be reparse point and
+ # don't show up in snapshot
+ print "WARNING: [$f] not found in job log but ignored\n";
+ } else {
+ print "ERROR: [$f] not found in job log\n";
+ $estat=1;
+ $nb++;
+ }
}
}
+ $nb=0;
foreach my $f (keys %content) {
next if ($f =~ /pagefile.sys/); # Skip swap file, not always in estimate...
last if ($nb > 10);