> For the complete documentation index, see [llms.txt](https://kythuat.dtechvn.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kythuat.dtechvn.com/sql-server/che-do-xp_cmd-shell-trong-sql-server.md).

# Chế độ xp\_cmd shell trong SQL Server

Hướng dẫn bật tắt xp\_cmdshell

## DÙNG LỆNH T-SQL

**Kiểm tra trạng thái**

```sql
SELECT CONVERT(INT, ISNULL(value, value_in_use)) AS ConfigValue
FROM sys.configurations
WHERE name = 'xp_cmdshell' ;
```

**Bật sử dụng:**

```sql
-- Enable advanced options to be changed.
EXEC SP_CONFIGURE 'show advanced options', 1
GO
RECONFIGURE
GO
-- Enable xp_cmdshell option.
EXEC SP_CONFIGURE N'xp_cmdshell', 1
GO
RECONFIGURE
GO
```

**Tắt sử dụng:**

```sql
-- Disable xp_cmdshell option. 
EXEC SP_CONFIGURE 'xp_cmdshell', 0
GO
RECONFIGURE
GO
-- Disable advanced options to be changed.
EXEC SP_CONFIGURE 'show advanced options', 0
GO
RECONFIGURE
GO
```

## DÙNG MANAGER STUDIO

<figure><img src="https://3934179848-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FpqWC051kMhpZgqZaU9Oy%2Fuploads%2F6jJzaYIzgBA3aYn7AFyk%2Fimage.png?alt=media&amp;token=58c501d4-aa36-40b3-9a24-3a305f142ff0" alt=""><figcaption></figcaption></figure>

<figure><img src="https://3934179848-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FpqWC051kMhpZgqZaU9Oy%2Fuploads%2F6l08ucaDsKVG8ZHjm05C%2Fimage.png?alt=media&amp;token=a806f849-2aba-4e40-b2e6-3d792c1a8a0b" alt=""><figcaption></figcaption></figure>
