Originally Posted By: Allen
Both are located in the one 001f6700 value


Are you sure?

There are multiple 001f6700 values under seperate subkeys and the script collects them together in an array.

Here's that bit of code simplified:
 Code:
; find the PST files associated with this profile - need to enumerate each subkey and find the 001f6700 value 
$eIndex = 0
$EKey = EnumKey($WKey, $eIndex)
While Not @ERROR
  $TVal = UtoA(ReadValue($WKey + $EKey, '001f6700'))
  If $TVAL $EKey+": "+$TVAL+@CRLF EndIf
  $eIndex = $eIndex + 1
  $EKey = EnumKey($WKey, $eIndex)
Loop


You should find that $EKey changes for each PST found.