Additional SQL Server features and topics not covered by specific categories
What does SELECT @@servername return? May I guess DESKTOP-QEMQDPL?
Do this:
EXEC sp_dropserver 'DESKTOP-QEMQDPL'
EXEC sp_addserver 'MACHINENAME', 'local'
And then restart SQL Server. Verify that SELECT @@servername now returns the correct name.
Also check sys.server_principals if there are any logins with the old machine name:
ALTER LOGIN [DESKTOP-QEMQDPL\login] WITH NAME = [MACHINENAME\login]