--- title: "SMO and DMO XPs Server Configuration Option | Microsoft Docs" ms.custom: "" ms.date: "03/02/2017" ms.prod: "sql-server-2016" ms.reviewer: "" ms.suite: "" ms.technology: - "database-engine" ms.tgt_pltfrm: "" ms.topic: "article" ms.assetid: bcd945ba-5d81-4124-9a2b-d87491c2a369 caps.latest.revision: 15 author: "JennieHubbard" ms.author: "jhubbard" manager: "jhubbard" --- # SMO and DMO XPs Server Configuration Option [!INCLUDE[tsql-appliesto-ss2008-xxxx-xxxx-xxx_md](../../includes/tsql-appliesto-ss2008-xxxx-xxxx-xxx-md.md)] Use the SMO and DMO XPs option to enable [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Management Object (SMO) extended stored procedures on this server. Note than beginning in [!INCLUDE[ssSQL11](../../includes/sssql11-md.md)], DMO has been removed from [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]. The possible values are described in the following table: |Value|Meaning| |-----------|-------------| |0|SMO XPs are not available.| |1|SMO XPs are available. This is the default.| The setting takes effect immediately. ## Examples The following example enables SMO extended stored procedures. ``` sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'SMO and DMO XPs', 1; GO RECONFIGURE GO ``` ## See Also [SQL Server Management Objects (SMO) Programming Guide](../../relational-databases/server-management-objects-smo/sql-server-management-objects-smo-programming-guide.md)