在给新来的同事装IIS的时候,发现怎么也安装不成功,后来发现是msdtc服务无法启动,在网上找的这个 运行下就ok了..
1、把下面保存为 msdtc.bat
    @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 
  

