Solution that MS DTC Transaction Manager cannot start

  
Unable to start MS DTC Transaction Manager -- Solution Event Type: Error Event Source: MSDTC Event Category: SVC Event ID: 4112 Event Description: Unable to start MS DTC Transaction Manager. -------------------------------------------------- -------- Event Type: Error Event Source: Service Control Manager Event Category: None Event ID: 7024 Event Description: The Distributed Transaction Coordinator service stopped due to a service error of 3221229584 (0xC0001010). -------------------------------------------------- -------- Problem Solving: Delete the associated registry key and reinstall the msdtc component to copy the following commands to the note, then save as *.bat and double click to run.
Copy the code
The code is as follows: @echo off setlocal @echo %WINDIR%\\System32\\msdtc.exe -uninstall %WINDIR%\\System32\\msdtc.exe -uninstall call :delkey ​​"HKCR\\CID" Call :delkey ​​"HKLM\\SYSTEM\\CurrentControlSet\\Services\\MSDTC" call :delkey ​​"HKLM\\SYSTEM\\ControlSet001\\Services\\MSDTC" call :delkey ​​"HKLM\\SYSTEM\\ControlSet002\\Services\\MSDTC" call :delkey ​​"HKLM\\Software\\ Microsoft\\MSDTC" @echo %WINDIR%\\System32\\msdtc.exe -install %WINDIR%\\System32\\msdtc.exe -install endlocal goto :EOF :delkey ​​set key=%1 call :delkeyq %key% >nul 2> &1 @echo.goto :EOF :delkeyq REG DELETE %key% /F After running, see if the log has successfully installed the Microsoft Distributed Transaction Coordinator service.
Copyright © Windows knowledge All Rights Reserved