Not sure if this is what you are wanting but the ffg script will re-create the Builtin/Administrators Login without reinstalling SQL Server.
-------------------------------------------------------------------
USE master
go
EXEC sp_grantlogin 'BUILTIN\Administrators'
go
EXEC sp_defaultdb 'BUILTIN\Administrators', 'master'
go
EXEC sp_defaultlanguage...