SQL Server 2014 SP1 Update fail

While attempting to install the SQL Server update using the download update file:

SQLServer2014-KB4019099-x64

I receive the following error:

Message Details

There are no SQL Server instances or shared features that can be updated on this computer.
I am running the installation where the SQL Server instance is running. is there a way to explicitly set the target system?

or any guidance would be greatly appreciated.

Did you check the result before applying the SP.

SELECT
SERVERPROPERTY('productversion') as 'Product Version',
SERVERPROPERTY('productlevel') as 'Service Pack',
SERVERPROPERTY('edition') as 'Edition',
SERVERPROPERTY('instancename') as 'Instance',
SERVERPROPERTY('servername') as 'Server Name'