Opsi Konfigurasi Server xp_cmdshell
Opsi xp_cmdshell adalah opsi konfigurasi server SQL Server yang memungkinkan administrator sistem mengontrol apakah prosedur tersimpan xp_cmdshell yang diperluas dapat dijalankan pada sistem. Secara default, opsi xp_cmdshell dinonaktifkan pada penginstalan baru dan dapat diaktifkan dengan menggunakan Manajemen Berbasis Kebijakan atau dengan menjalankan prosedur tersimpan sistem sp_configure seperti yang ditunjukkan dalam contoh kode berikut:
-- To allow advanced options to be changed.
EXEC sp_configure 'show advanced options', 1;
GO
-- To update the currently configured value for advanced options.
RECONFIGURE;
GO
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', 1;
GO
-- To update the currently configured value for this feature.
RECONFIGURE;
GO
Lihat juga
Opsi Konfigurasi Server (SQL Server)
Mengelola Server dengan Menggunakan Manajemen Berbasis Kebijakan