I'm not sure what you're trying to copy, but if you want to get the directory of the CD into excel, just open a command prompt window and list the directory using the "dir" command. Then copy and paste it from the command window.
Or better still, redirect the output of "dir" to a text file like so:
Code:
dir d:\ >directory.txt
(assuming the CD is drive d:\) Then import the text file into excel.
HTH