Not really sure I understand what you mean, do you just want a playlist of every album?
If you do, you could use Mr ChriZ' scripting plugin:
http://yabb.jriver.com/interact/index.php?topic=38693.0and this script, which does exactly that:
using System;
//css_reference MediaCenter.dll;
class Script : MarshalByRefObject
{
public void Init(MediaCenter.MCAutomation mediaCenterInterface)
{
//Get a set of files with one track for every album (add to the search string if not all albums required)
MediaCenter.IMJFilesAutomation albums = mediaCenterInterface.Search("[Media Type]=Audio ~nodup[Album],[Album Artist (Auto)]");
//for each album's track
for (int albumCounter = 0; albumCounter < albums.GetNumberFiles() ; ++albumCounter)
{
String album = albums.Get(albumCounter,"Album"); //get album's artist
String artist = albums.Get(albumCounter,"Album Artist (Auto)"); //get album's name
//Create a playlist
MediaCenter.IMJPlaylistAutomation playlist = mediaCenterInterface.GetPlaylists().CreatePlaylist("Albums\\",artist + " - " + album);
//Get all files in that album by that album artist.
MediaCenter.IMJFilesAutomation tracks = mediaCenterInterface.Search("album=[" + album + "] autoalbumartist=[" + artist + "]");
//Add each track from that album into the playlist
for(int trackCounter = 0; trackCounter < tracks.GetNumberFiles(); ++trackCounter)
{
playlist.AddFile(tracks.Get(trackCounter,"filename"),trackCounter);
}
}
}
}