There was a requirement to allow Ole Automation Procedures within SQL Server 2005 ,
this code will enable the feature.
-------------------CODE START------------------------
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Ole Automation Procedures', 1;
GO
RECONFIGURE;
GO
-------------------CODE FINISH--------------------------
Comments