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: brianlala **
SELECT FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')
Which will return 1 or 0.
Comments: ** Comment from web user: brianlala **
That's correct AFAIK, only required for the new Access Services 2013. The old one behaves the same as the 2010 version with same requirements etc.
It's totally doable, just means adding some more checks and conditions. Not a big deal.
Brian