I am not sure that I understand this.
If the server is called SQL2014 already, there is no need to do the dropserver/addserver dance.
Possibly the list above is missing a step were you rename the Windows server SQL2014 to SQL2008, but in that case you would do:
EXEC sp_dropserver 'SQL2014\MSS'
EXEC sp_addserver 'SQL2008\MSS', 'locall'
(May I guess that the actual server names are different and then you messed up the names when you composed your posting?)