Re-read the third post from the end of the prior page. The code tag was not correct and I see how the result could have been confusing. I fixed the tag so the two code sections now appear correctly.

Once you have a set of keys, you'll need to enumerate them with something like
 Code:
'CD Keys: ' ?
For Each $Key in $aData
  $Key ?
Next
You need to change the code to properly build an array of CD Keys, and then modify the output to display the keys. Here's a cool shortcut to display the contents of a small array -
 Code:
$Array = 'Reg', 'Green', 'Blue'
Join($Array, ', ') ?
This is great for debugging.

Glenn
_________________________
Actually I am a Rocket Scientist! \:D