Shane,

You don't get the object returned from DiskInfo(), but an array of comma separated strings.

After your rebuild it will return an array of tabulator separated strings, and you should write it
directly to the file.

Use it like this:
code:
$PC = @wksta
if open(9, "s:\computing\scripts\" + @wksta + "_dr.txt",5) = 0
For Each $Disk In DiskInfo($PC)
$Disk ?
$RC = writeline(9, $Disk + @CRLF)
$RC = close (9)
Next
else
? "File open error = " @error
endif

Get $x

Return

-Erik