What is User Data Access_14d4fe service and how can I get rid of it?

15

1

I see a strange service in my windows 10 system called "User Data Access_14d4fe", with internal service name UserDataSvc_14d4fe.

The path to executable is C:\WINDOWS\system32\svchost.exe -k UnistackSvcGroup

I believe it has something to do with Windows Store applications. Can I stop it? Unregister it? What does it do? Its description says "Provides apps access to structured user data, including contact info, calendars, messages, and other content. If you stop or disable this service, apps that use this data might not work correctly.".

I have stopped it and do not see anything not working, I assume it must be affecting something to do with Windows store?

I am unable to change the start up type from manual. I can not disable, or delete it, even using the command line. Is there any way to get rid of this service completely in Windows 10?

Warren P

Posted 2016-10-01T18:38:11.027

Reputation: 2 623

Answers

11

This is the User Data Access (UserDataSvc)Service which allows apps access user data, including contact info, calendars, messages, and other content. Apps need such a service because apps run in a sandbox and can't access the data the way like desktop applications would do it.

Leave it running and ignore it, sooner or later you'll run into issues when you stop the service.

magicandre1981

Posted 2016-10-01T18:38:11.027

Reputation: 86 560

1

Here's a link to a Microsoft page about this and other Per-user services in Windows 10: https://docs.microsoft.com/en-us/windows/application-management/per-user-services-in-windows. That page explains the bit after the name is a LUID or the locally unique identifier.

– Kioshiki – 2018-04-07T06:49:36.077

@Kioshiki Ah.. that LUID part was specially making me suspicious about this service along w/ others. Thanks for the doc! – baburao – 2019-03-21T09:33:15.130

2

  • Description of that services (UserDataAccessRes.dll.mui)::

    Provides apps access to structured user data, including contact info, calendars, messages, and other content. If you stop or disable this service, apps that use this data might not work correctly.

  • If you really want to delete that service type this command in Command Prompt with administrator::

reg delete "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UserDataSvc" /F

It is highly recommended not to mess-up with Registry and Services.

Biswapriyo

Posted 2016-10-01T18:38:11.027

Reputation: 6 640

2

See my reply here:

Strange, similar services running on my PC: are they viruses?

Duplicate services with names such as _xxxx are per-user services introduced in Windows 1709. They can only be disabled via the registry.

Guest 1999

Posted 2016-10-01T18:38:11.027

Reputation: 111