Priority boost is ON
What does priority boost option do?
The option will make SQL Server run the sqlservr.exe process and threads as High Priority.
It has the potential to drain resources from essential OS & networking functions, resulting in problems and shutting down SQL Server.
Microsoft’s best practices do not recommend to enable this feature.
By the way, this check is a part of our SQL Server Health Check service.
How can I check if the priority boost option is enabled?
- Using SSMS, right-click the instance name and select Properties.
- Then click on the Processors tab.

How do I disable Boost SQL Server priority?
You can disable it using the interface above.
Another way is to implement the change running the following script:
EXEC sys.sp_configure N'show advanced options', N'1';
GO
RECONFIGURE
GO
EXEC sys.sp_configure N'priority boost', N'0'
GO
RECONFIGURE
GO
More information
Microsoft – Configure the priority boost Server Configuration Option