Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Question
Wednesday, August 26, 2015 6:16 AM
Win 10.10240
Event ID 7023 Service Control Manager
Hi,
I am getting multiple errors in the system log about:
"The Data Sharing Service service terminated with the following error: %%3239247876"
Manually trying to start the service results in:
"Windows could not start the Data Sharing Service on Local Computer. Error 0xc113004: 0xc113004"
Solutions appreciated and not just locking the topic like previously here :
TY :)
All replies (7)
Friday, August 28, 2015 9:58 AM
Hi,
According to the error message, it seems like there is a problem with Data Sharing Service. Please access to Service Manage console to check its status:
Open Run, type services.msc, Press Enter.
After that, enable the service and set it start with system automatically for test.
On the other hand, because this service is corresponding with application, please check Event Viewer if there any application error report.
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected].
Saturday, August 29, 2015 6:39 PM
Hi Roger,
TY for the answer.
I will give it a try and get back to you.
TY :)
Friday, December 9, 2016 6:36 PM
I have problems with this service too. Only the error code is a bit different in my case: 0xC1130002.
Analyzing the Data Sharing Service with Process Monitor it just started, querried C:\Windows\System32\config\systemprofile\AppData\Local\DataSharing\Storage folder a couple of times, and quit. Nothing unusual, no file-not-founds or access-denied on filesystem nor registry.
Perhaps DsSvc just finds out there is nothing to do and quits, to much of Service Control Manager surprise. It's Service Control Manager who's complaining in Event Log in the first place.
What does this service do anyway?
Thursday, March 16, 2017 5:42 PM | 4 votes
Known problem is a conflict between services. Fix with cmd (as Administrator):
Sc config ualsvc type=own
Sc config dssvc type=own
Thursday, April 6, 2017 7:47 PM
thanks that fixed it!
Thursday, May 4, 2017 8:22 PM | 1 vote
This worked for me after I removed the space between 'type' and '=' as follows:
Sc config ualsvc type= own
Sc config dssvc type= own
Thursday, February 14, 2019 8:39 AM
Thanks it fixed for me.