Now fixed, we used the Stored Procedures below, executed them separately in query analyzer:
**//Make sure you execute these scripts separately
--1)
sp_configure 'allow update', '1'
RECONFIGURE WITH OVERRIDE
--2)
update sysfulltextcatalogs set path='S:\Text'
--3)
sp_configure 'allow update', '0'
RECONFIGURE WITH OVERRIDE