Поломалась служба времени, во время очередного обновления перестала запускаться. Выполняю команду:
Системная ошибка 1290.
Не удалось запустить эту службу, так как одна или несколько служб одного процесс
а имеют несовместимый параметр типа SID службы. Служба с ограниченным типом SID
может сосуществовать в одном и том же процессе только с другими службами с огран
иченным типом SID. Если тип SID для этой службы только что настроен, необходимо
перезапустить хост-процесс, чтобы запустить эту службу.
Выносим службу в отдельный процесс:
sc config w32time type= own
Должны получить [SC] ChangeServiceConfig SUCCESS
После чего служба запускается, но при этом начинает ругается dcdiag.
Invalid service type: w32time on DCSERVER, current value WIN32_OWN_PROCESS, expected value
WIN32_SHARE_PROCESS
При попытке выполнить любой запрос, например w32tm /query /status вываливается ошибка закрытого доступа.
w32tm /query /status Access is denied. (0x80070005)
Решение:
net stop w32time
w32tm /unregister
Перезапускаем сервер и регистрируем службу:
regsvr32 /u w32time.dll
w32tm /register
После убедимся, что сервис снова установлен в расшаренном режиме, наберем:
sc query w32time
В ответ должны получить WIN32_OWN_PROCESS:
SERVICE_NAME: w32time
TYPE : 20 WIN32_SHARE_PROCESS
STATE : 1 STOPPED
(STOPPABLE, NOT_PAUSABLE, ACCEPTS_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
После чего, снова перезапускаем сервер, и запускаем команду sc query w32time, проверяем что служба работает:
SERVICE_NAME: w32time
TYPE : 20 WIN32_SHARE_PROCESS
STATE : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, ACCEPTS_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
Настраиваем контроллер на получение времени из внешних источников:
w32tm /config /manualpeerlist:»ntp1.stratum2.ru,0x8 ntp2.stratum2.ru,0x8 ntp3.stratum2.ru,0x8″ /syncfromflags:manual /reliable:yes /update
Внесем изменения в конфигурацию:
w32tm /config /update
Выполним синхронизацию командой:
w32tm /resync /rediscover
Отобразить текущие источники синхронизации и их статус можно следующей командой:
w32tm /query /peers
Статус синхронизации контроллеров домена в домене:
w32tm /monitor
- Remove From My Forums
-
Question
-
Hello all
I’m getting a system error 1290, when i try to use the command «net start w32time».
The output from cmd looks like this:
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.How do i recover from this error?
Answers
-
Troubleshooting an unrelated issue, I think I’ve finally found the solution to this error (sometimes, rebooting also fixes this specific error). See the underlined command below, and mind the required space between = and own. The command puts the w32time
service in it’s own svchost process, so it doesn’t have to share the process with other services which may have been configured with an service SID type incompatible with w32time’s.Running the following from an elevated command prompt seems to be a pretty surefire way to fix your Windows Time service.
pushd %SystemRoot%system32
.net stop w32time
.w32tm /unregister
.w32tm /register
.sc config w32time type= own
.net start w32time
.w32tm /config /update /manualpeerlist:"0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org",0x8 /syncfromflags:MANUAL /reliable:yes
.w32tm /resync
popd-
Proposed as answer by
Thursday, November 1, 2012 1:46 PM
-
Marked as answer by
Yagmoth555MVP
Tuesday, February 25, 2014 7:58 PM
-
Proposed as answer by
-
Hi cliff.ha, I suggest you first try the following steps and see the result:
1.Click Start , type regedit in the Start Search box, and then click regedit.exe in the Programs list.
If you are prompted for an administrator password or for a confirmation, type your password, or click Continue .
2.Locate the following registry subkey, and then click it:
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTapiSrv
3.In the details pane, right-click ImagePath , and then click Modify .
4.In the Value data box, type the following registry value, and then click OK :%SystemRoot%System32svchost.exe -k NetworkService
Note: If NetworkService does not appear in the %SystemRoot%System32svchost.exe -k NetworkService registry value, the problem that is described in the «Symptoms» section may occur.
5.Exit Registry Editor, and then restart the computer.
Note If you try to start the Telephony service before you restart the computer, you may receive the following error message:
Error 1290: 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.Hope this helps!
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
-
Marked as answer by
Sean Zhu —
Friday, October 29, 2010 6:30 AM
-
Marked as answer by
- Remove From My Forums
-
Question
-
Hello all
I’m getting a system error 1290, when i try to use the command «net start w32time».
The output from cmd looks like this:
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.How do i recover from this error?
Answers
-
Troubleshooting an unrelated issue, I think I’ve finally found the solution to this error (sometimes, rebooting also fixes this specific error). See the underlined command below, and mind the required space between = and own. The command puts the w32time
service in it’s own svchost process, so it doesn’t have to share the process with other services which may have been configured with an service SID type incompatible with w32time’s.Running the following from an elevated command prompt seems to be a pretty surefire way to fix your Windows Time service.
pushd %SystemRoot%system32
.net stop w32time
.w32tm /unregister
.w32tm /register
.sc config w32time type= own
.net start w32time
.w32tm /config /update /manualpeerlist:"0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org",0x8 /syncfromflags:MANUAL /reliable:yes
.w32tm /resync
popd-
Proposed as answer by
Thursday, November 1, 2012 1:46 PM
-
Marked as answer by
Yagmoth555MVP
Tuesday, February 25, 2014 7:58 PM
-
Proposed as answer by
-
Hi cliff.ha, I suggest you first try the following steps and see the result:
1.Click Start , type regedit in the Start Search box, and then click regedit.exe in the Programs list.
If you are prompted for an administrator password or for a confirmation, type your password, or click Continue .
2.Locate the following registry subkey, and then click it:
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTapiSrv
3.In the details pane, right-click ImagePath , and then click Modify .
4.In the Value data box, type the following registry value, and then click OK :%SystemRoot%System32svchost.exe -k NetworkService
Note: If NetworkService does not appear in the %SystemRoot%System32svchost.exe -k NetworkService registry value, the problem that is described in the «Symptoms» section may occur.
5.Exit Registry Editor, and then restart the computer.
Note If you try to start the Telephony service before you restart the computer, you may receive the following error message:
Error 1290: 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.Hope this helps!
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
-
Marked as answer by
Sean Zhu —
Friday, October 29, 2010 6:30 AM
-
Marked as answer by
- Remove From My Forums
-
Question
-
Hello all
I’m getting a system error 1290, when i try to use the command «net start w32time».
The output from cmd looks like this:
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.How do i recover from this error?
Answers
-
Troubleshooting an unrelated issue, I think I’ve finally found the solution to this error (sometimes, rebooting also fixes this specific error). See the underlined command below, and mind the required space between = and own. The command puts the w32time
service in it’s own svchost process, so it doesn’t have to share the process with other services which may have been configured with an service SID type incompatible with w32time’s.Running the following from an elevated command prompt seems to be a pretty surefire way to fix your Windows Time service.
pushd %SystemRoot%system32
.net stop w32time
.w32tm /unregister
.w32tm /register
.sc config w32time type= own
.net start w32time
.w32tm /config /update /manualpeerlist:"0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org",0x8 /syncfromflags:MANUAL /reliable:yes
.w32tm /resync
popd-
Proposed as answer by
Thursday, November 1, 2012 1:46 PM
-
Marked as answer by
Yagmoth555MVP
Tuesday, February 25, 2014 7:58 PM
-
Proposed as answer by
-
Hi cliff.ha, I suggest you first try the following steps and see the result:
1.Click Start , type regedit in the Start Search box, and then click regedit.exe in the Programs list.
If you are prompted for an administrator password or for a confirmation, type your password, or click Continue .
2.Locate the following registry subkey, and then click it:
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTapiSrv
3.In the details pane, right-click ImagePath , and then click Modify .
4.In the Value data box, type the following registry value, and then click OK :%SystemRoot%System32svchost.exe -k NetworkService
Note: If NetworkService does not appear in the %SystemRoot%System32svchost.exe -k NetworkService registry value, the problem that is described in the «Symptoms» section may occur.
5.Exit Registry Editor, and then restart the computer.
Note If you try to start the Telephony service before you restart the computer, you may receive the following error message:
Error 1290: 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.Hope this helps!
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
-
Marked as answer by
Sean Zhu —
Friday, October 29, 2010 6:30 AM
-
Marked as answer by
Содержание
- Ошибка при выполнении синхронизации времени в Windows
- 1. Выберите другой сервер
- 2. Перезапуск службы времени
- 3. Новая регистрация W32Time
- Служба времени Windows не работает. Синхронизация времени завершается с ошибкой
- Синхронизация времени Windows не работает
- Служба Windows Time не работает
- Служба Windows Time не запускается с ошибкой 1079
- Система не может найти указанный путь
- Модуль w32time.dll был загружен, но произошел сбой вызова DllRegisterServer с кодом ошибки 0x80070003
- Принудительно синхронизировать время с помощью CMD
- Произошла следующая ошибка: система не может найти указанный путь. (0x80070003)
- Синхронизация времени перестала работать
Ошибка при выполнении синхронизации времени в Windows
Ошибка при выполнении синхронизации с time.windows.com, возникает когда пользователь пытается автоматически обновить время в Windows 7. Виновником данной ошибке обычно являются сами сервера microsoft, так как не удается соединиться с NTP сервером для синхронизации времени. В других ситуациях эта старая батарейка на материнской плате, которая не держит уже заряд, и время все время сбивается, когда ПК выключен из розетки. В этой ситуации нужно повторно зарегистрировать время в системе.
1. Выберите другой сервер
Выберите другой сервер для синхронизации времени.
2. Перезапуск службы времени
Нажмите Win+R и services.msc, чтобы открыть службы. Далее найдите «Служба времени Windows» и нажмите по ней два раза мышкой. В новом окне выберите тип запуска «Автоматически«, нажмите «Остановить«, после чего «Запустить«.
3. Новая регистрация W32Time
Запустите командную строку от имени администратора и введите ниже команды:
Служба времени Windows не работает. Синхронизация времени завершается с ошибкой
Мы уже видели, как изменить интервал обновления времени Windows в Интернете. Но, возможно, ваше Windows Time неправильно и не синхронизируется, или вы не можете настроить параметры Windows Internet time для автоматической синхронизации с сервером времени в Интернете, например, time.windows.com . Хотя вы можете вручную синхронизировать время, нажав Обновить сейчас , вы можете обнаружить, что он просто не делает этого автоматически.
Прежде чем приступить к устранению неполадок, было бы неплохо запустить проверку системных файлов. Для этого вы должны ввести sfc/scannow в CMD с повышенными правами и нажать Enter. Подождите некоторое время, и когда работа будет завершена, перезагрузите компьютер с Windows. Как только вы это сделаете, мы можем двигаться дальше, чтобы попытаться устранить проблему синхронизации времени Windows.
Синхронизация времени Windows не работает
Чтобы изменить настройки времени, нажмите кнопку «Время» в правой части панели задач и выберите настройки даты и времени. Настройки синхронизации находятся на вкладке Интернет-время.
Служба Windows Time не работает
Если у вас неверное время в Windows 10, в первую очередь нужно выяснить, установлен ли для Службы времени Windows значение «Автоматически и запущено», иначе может появиться сообщение об ошибке: Windows Служба времени не работает .
Для этого введите services.msc в поле Начать поиск и нажмите Enter. В диспетчере служб перейдите к службе времени Windows и дважды щелкните ее.
Проверьте и посмотрите, запущен ли он и установлен ли на Автоматический. Если нет, измените тип запуска на Автоматический и нажмите Применить/ОК.
Если это работает, отлично, запустите сервис и выйдите. Это должно быть концом ваших проблем. Если нет, и вы получаете сообщения об ошибках – читайте дальше!
Служба Windows Time не запускается с ошибкой 1079
Если вы обнаружите, что служба времени Windows не запускается с Ошибка 1079 , вы можете убедиться, что служба запускается с помощью учетной записи локальной системы, а не учетной записи локальной службы (NT AUTHORITY LocalService ). Подробнее об этом здесь .
Система не может найти указанный путь
Появляется сообщение об ошибке: Системе не удается найти указанный путь .
В таком случае, вы можете перерегистрировать файл DLL. Соответствующий файл DLL – это w3time.dll . Для этого откройте командную строку от имени администратора, введите regsvr32 w32time.dll и нажмите Enter.
Если это работает, хорошо, еще вы все еще получаете это сообщение?
Модуль w32time.dll был загружен, но произошел сбой вызова DllRegisterServer с кодом ошибки 0x80070003
Затем вы также можете зарегистрировать соответствующий файл Windows Time , который называется W32tm.exe, и посмотреть, поможет ли это!
W32tm.exe , расположенный в папке System32, используется для настройки параметров службы времени Windows. Он также может быть использован для диагностики проблем со службой времени. W32tm.exe является предпочтительным средством командной строки для настройки, мониторинга или устранения неполадок службы времени Windows. Вы можете проверить все его параметры здесь на TechNet.
Мы будем использовать параметр /register . Этот параметр при запуске для W32tm.exe регистрирует службу времени для запуска в качестве службы и добавляет конфигурацию по умолчанию в реестр.
Для этого в командной строке с повышенными правами введите эти команды одну за другой и нажмите Enter:
Принудительно синхронизировать время с помощью CMD
Вы также можете заставить Windows синхронизировать время, используя W32tm.exe. W32tm.exe – это строка командной строки, используемая для настройки, мониторинга или устранения неполадок службы времени Windows на ПК с Windows 10.
Для этого откройте командную строку с повышенными правами и введите следующие команды одну за другой:
Перезагрузите компьютер и посмотрите, помог ли он.
Посмотрите, поможет ли это решить вашу проблему … если нет … вздох … вы можете снова получить сообщение при регистрации w32tm.exe:
Произошла следующая ошибка: система не может найти указанный путь. (0x80070003)
Убедитесь, что вы вошли в систему как администратор и открыли командную строку как администратор – но вы можете получить ошибку, даже если вы выполнили эти требования.
В таком случае вам придется открыть редактор реестра .
Открыв regedit, перейдите к следующему разделу реестра:
HKLM HKEY_LOCAL_MACHINE SYSTEM CurrentControl услуги TapiSrv
Теперь на правой панели щелкните правой кнопкой мыши ImagePath и выберите Modify. Здесь, в поле «Значение», убедитесь, что это значение:
% SystemRoot% System32 svchost.exe -k NetworkService
Нажмите OK и выйдите.
Надеюсь, что-нибудь поможет!
Если ничего не помогает, используйте другой сервер времени, воспользуйтесь бесплатным программным обеспечением для синхронизации времени или попробуйте восстановить/сбросить/переустановить Windows и посмотрите, поможет ли он вам. Если вы не хотите рассматривать этот последний вариант, я могу дать вам только один практический совет: снимите флажок Синхронизировать с сервером времени в Интернете , установите время вручную, а затем отметьте его один раз в какое-то время!
Хотите проверить точность своих системных часов?
Синхронизация времени перестала работать
Все новые темы
Автор | ||||
---|---|---|---|---|
ipmanyak Windows guru Windows guru » title=» Windows guru » border=»0″/> Зарегистрирован: 28.03.2007 |
|
|||
Вернуться к началу |
|
|||
Зарегистрируйтесь и реклама исчезнет!
|
||||
ХочуРазобраться Участник форума Зарегистрирован: 23.11.2011
|
|
|||
Вернуться к началу |
|
|||
ХочуРазобраться Участник форума Зарегистрирован: 23.11.2011
|
|
|||
Вернуться к началу |
|
|||
NotAvailable подпись на выбор, в личку sklifу Зарегистрирован: 24.10.2008 |
|
|||
Вернуться к началу |
|
|||
ipmanyak Windows guru Windows guru » title=» Windows guru » border=»0″/> Зарегистрирован: 28.03.2007 |
|
|||
Вернуться к началу |
|
|||
ХочуРазобраться Участник форума Зарегистрирован: 23.11.2011
|
|
|||
Вернуться к началу |
|
|||
cat310 Старожил форума Зарегистрирован: 29.01.2014 |
|
|||
Вернуться к началу |
|
|||
cat310 Старожил форума Зарегистрирован: 29.01.2014 |
|
|||
Вернуться к началу |
|
|||
cat310 Старожил форума Зарегистрирован: 29.01.2014 Adblock |