How to disable CLR integration in SQL Server

EXEC sp_configure 'clr enabled', 0;

RECONFIGURE WITH OVERRIDE;

Go