How to Start/Stop User Data Access_2e4b90a2
Service name: UserDataSvc_2e4b90a2
Display name: User Data Access_2e4b90a2
Description:
Provides apps with 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.
Path to executable:
C:\WINDOWS\system32\svchost.exe -k UnistackSvcGroup
CMD:
This method shows you how to Start/Stop User Data Access_2e4b90a2 service from Command Prompt
Perform the following steps:
Please go to Start and click on the Type here to search
Type cmd, right click on cmd icon under the Programs and click on Run as administrator
Please confirm User Account Control pop-up
Please select, right and copy a registry key from below, then right click on command prompt window, select Paste and press Enter
To Start User Data Access_2e4b90a2 service:
net start UserDataSvc_2e4b90a2
sc start UserDataSvc_2e4b90a2
Note: You can’t start a service if Startup type is on Disabled.
To Stop User Data Access_2e4b90a2 service:
net stop UserDataSvc_2e4b90a2
sc stop UserDataSvc_2e4b90a2
To change Startup type:
Automatic:
REG add "HKLM\SYSTEM\CurrentControlSet\services\UserDataSvc_2e4b90a2" /v Start /t REG_DWORD /d 2 /f
sc config UserDataSvc_2e4b90a2 start= auto
Manual:
REG add "HKLM\SYSTEM\CurrentControlSet\services\UserDataSvc_2e4b90a2" /v Start /t REG_DWORD /d 3 /f
sc config UserDataSvc_2e4b90a2 start= demand
Disabled:
REG add "HKLM\SYSTEM\CurrentControlSet\services\UserDataSvc_2e4b90a2" /v Start /t REG_DWORD /d 4 /f
sc config UserDataSvc_2e4b90a2 start= disabled
Automatic (Delayed Start):
REG add "HKLM\SYSTEM\CurrentControlSet\services\UserDataSvc_2e4b90a2" /v Start /t REG_DWORD /d 2 /f
sc config UserDataSvc_2e4b90a2 start= delayed-auto
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart is created with value 1.
REG add "HKLM\SYSTEM\CurrentControlSet\services\UserDataSvc_2e4b90a2" /v DelayedAutostart /t REG_DWORD /d 1 /f
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart change value to 0.
REG add "HKLM\SYSTEM\CurrentControlSet\services\UserDataSvc_2e4b90a2" /v DelayedAutostart /t REG_DWORD /d 0 /f