Make sure that you have a sysadmin left after removing builtin\administrators. I have seen sql servers in integrated mode where someone removed builtin\administrators and then nobody could administer the server.
Local System is very powerful. Any code executed by SQL Server can change anything on the windows box so if you are running untrusted code inside SQL Server you need to be aware of that fact and the potential threat it represents.
to remove builtin\administraotrs
exec sp_dropsrvrolemember [BUILTIN\Administrators] , sysadmin
go
drop login [BUILTIN\Administrators]
go
hth,
-Steven Gott
S/DET
SQL Server
|||Hi,
What about NT AUTHORITY\System account?
Is it needed?
Regards,
Jeremy
|||Some management tools may be using it (for example MOM).
-Raul Garcia
SDE/T
SQL Server Engine
No comments:
Post a Comment