run this query in management studio...
select * from sys.fulltext_document_types
Should return all the document types...

Signature
/*
Warren Brunk - MCITP - SQL 2005, MCDBA
www.techintsolutions.com
*/
There is an error in BOL. It should read
"Many document types can be stored in a single varbinary(max), and XML can
be stored in an xml column. Microsoft SQL Server 2005 supports certain
document types and provides a filter for these types."
You can also use sp_fulltext_service 'load_os_resources', 1
and
sp_fulltext_service 'verify_signature', 1
To load os ifilters, like the PDF ifilter. These iFilters must already be
installed on SQL Server.

Signature
Hilary Cotter
Director of Text Mining and Database Strategy
RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
This posting is my own and doesn't necessarily represent RelevantNoise's
positions, strategies or opinions.
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
> run this query in management studio...
>
[quoted text clipped - 14 lines]
>> Thanks,
>> KJ