SQL Server doesn't have direct ENABLE command to enable an index.
REBUILD index enables the indexes which are disbled....
Syntax:
ALTER INDEX IX_IndexName ON dbo.TargetTable REBUILD;
Rebuilding index is a periodical task to update the index usage statistics on the server/database.