I issued the commands
USE MyDatabase
EXEC sp_fulltext_database 'enable'
"At this point, the Full Text Search was available in the Management Console"
From here in TSQL :-
--1 Create the catalog (unless you already have)EXEC sp_fulltext_catalog 'FTCatalog','create'--2 Add a full text index to a tableEXEC sp_fulltext_table 'Departments', 'create', 'FTCatalog', 'pk_departments'--3 Add a column to the full text index
EXEC sp_fulltext_table 'Employees', 'create', 'FTCatalog', 'pk_employees'EXEC sp_fulltext_column 'Departments', 'ProductName', 'add'--4 Activate the index
EXEC sp_fulltext_column 'Employees', 'Description', 'add'1 EXEC sp_fulltext_table 'Departments','activate'--5 Start full population
2 EXEC sp_fulltext_table 'Employees','activate'EXEC sp_fulltext_catalog 'FTCatalog', 'start_full'