If Access Services is enabled to be installed, Full Text Search is required in SQL server. The scrupt could verify that this option is installed with the query:
SELECT FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')
Which will return 1 or 0.
Comments: ** Comment from web user: paulhickman **
SELECT FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')
Which will return 1 or 0.
Comments: ** Comment from web user: paulhickman **
The query is the same back as far as SQL 2005
As you say, it does only need to run on the Access Services instance of SQL, and further more, I believe it is only for the Access 2013 services. If the Access 2010 services is installed on a 2013 farm, I don't think it is needed. That needs to be double checked though.