Normally we will facing Sql Server problem if we change computer name after installing Sql Server.
How to solve this problem? Just run script at below
sp_dropserver <'old_name\instancename'> GO sp_addserver <'new_name\instancename'>, local GO
Further more, please refer to How to: Rename a Computer that Hosts a Stand-Alone Instance of SQL Server.
