This error usually comes up when you try to start a new service that would get the same service ID as another service in the process:
System error 1290 has occurred.
The service start failed since one or more services in the same process have an incompatible service SID type setting. A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type. If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service.
It can be circumvented by giving the new service its own process. To do that, open a new command prompt as administrator and enter the following (replace [command] with the command's identifier):
sc config [command] type= own
For example, if you want to start the w32time command, enter:
sc config w32time type= own
Absolutely worked!! Chasing a problem with BITS (XP Home), thru Microsoft, to no avail. Stumbled onto this webpage, gave BITS it’s own process. Able to start the service and perform updates.
I can’t thank you enough. This has been driving me crazy and so has Microsoft!
Same problem exactly. I know a bit about computers but not enough. Had a clever guy helping and when I found this he said “lets give it a try, can’t do any harm”. I am so pleased he did because this has fixed it. Thanks a lot to the original poster, I am very grateful.
You ROCK! This fixed my problem with the w32time service being unable to start due to an SID type conflict.
Genius !
You have save my time. I had search few days about this, but you are the only one person who success me.
Thanks Sir !
The fix works in so much as I can start the service, but I get access is denied errors when I try to do anything with W32TM, such as w32tm /query /source or W32TM /resync /rediscover
Have you come across this before? I’m in dire straits!
Regards,
Martin
Getting the access denied errors too, after setting “own”.
Any fix for this?
Martin – I see the same issue with access denied on w32tm /query /status after running
sc config w32time type= own
as aresolution to err1290.
Did you find a proper fix ?
excellent.
sc config wuauserv type= own
was used to fix an ongoing windows update issue. Prior to this SID error as above, we had error 87 the parameter is incorrect when trying to start windows update. Having created a batch file copied from another forum, it reset windows update but did not fully resolve the error. It then generated the 1290 error having run the script.
@echo off & setLocal EnableDELAYedExpansion
echo Stop Bits and Windows Update service
net stop wuauserv /Y
net stop bits /Y
Echo Remove Registry Keys from Windows Update Agent
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v AccountDomainSid /f
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v PingID /f
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v SusClientId /f
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v SusClientIDValidation /f
Del “C:\ProgramData\Microsoft\Network\Downloader\qmgr*.dat”
CD /D %SystemRoot%\System32
regsvr32.exe /S atl.dll
regsvr32.exe /S urlmon.dll
regsvr32.exe /S mshtml.dll
regsvr32.exe /S shdocvw.dll
regsvr32.exe /S browseui.dll
regsvr32.exe /S jscript.dll
regsvr32.exe /S vbscript.dll
regsvr32.exe /S scrrun.dll
regsvr32.exe /S msxml.dll
regsvr32.exe /S msxml3.dll
regsvr32.exe /S msxml6.dll
regsvr32.exe /S Msjava.dll
regsvr32.exe /S actxprxy.dll
regsvr32.exe /S softpub.dll
regsvr32.exe /S wintrust.dll
regsvr32.exe /S dssenh.dll
regsvr32.exe /S rsaenh.dll
regsvr32.exe /S gpkcsp.dll
regsvr32.exe /S sccbase.dll
regsvr32.exe /S slbcsp.dll
regsvr32.exe /S cryptdlg.dll
regsvr32.exe /S oleaut32.dll
regsvr32.exe /S ole32.dll
regsvr32.exe /S shell32.dll
regsvr32.exe /S initpki.dll
regsvr32.exe /S wuapi.dll
regsvr32.exe /S wuaueng.dll
regsvr32.exe /S wuaueng1.dll
regsvr32.exe /S wucltui.dll
regsvr32.exe /S wups.dll
regsvr32.exe /S wups2.dll
regsvr32.exe /S wuweb.dll
regsvr32.exe /S qmgr.dll
regsvr32.exe /S qmgrprxy.dll
regsvr32.exe /S wucltux.dll
regsvr32.exe /S muweb.dll
regsvr32.exe /S wuwebv.dll
echo Remove software distribution folder
rd /s /Q %SystemRoot%\SoftwareDistribution
echo Start Bits and Windows Update service
net start bits
net start wuauserv
wuauclt /resetauthorization /detectnow
exit /B 0
Worked for resolving error with atomic clock/windows time service, Microsoft don’t seem to know how their own operating system works.
Thanks.
Kudos! fixed the issue like charm in Windows 2008 Server.
time service was able to start after performing this step.
Thanks nice and i an able to start the service.
I has the same problem with Windows Update service, but “sc config wuauserv type= own” fixed it.
Thank you!! This worked. I saved the text file with an extension .bat and I was able to successfully run this.
Spot on, worked like charm! Thank you!