I like it too Greg. For my computer which has 3 HDs (1 ATA, 2 SATA) and 5 partitions, I setup a little batch file and diskpart script so I can get full info on all of them in a notepad window.

The diskpart script looks like this:
list disk
select disk 0
detail disk

select partition 1
detail partition

select partition 2
detail partition

select partition 3
detail partition

select disk 1
detail disk

select partition 1
detail partition

select partition 2
detail partition

select disk 2
detail disk

select partition 1
detail partition

exit
The batch file to invoke it looks like this:
@Echo off
diskpart /s diskpartinfo.txt > diskpartinfolog.txt & notepad diskpartinfolog.txt & del diskpartinfolog.txt
Pops up a notepad window where I can copy the output then paste it anywhere I want, or even save the file else where if needed. The diskpartinfo.txt file has to be in the current directory.