I'm following this article http://support.microsoft.com/kb/817066, I'm having trouble finding MSDTC tab on windows 7 can anyone help me ?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

The MSDTC tab may need to be installed, according to this answer from Stack Overflow:

If it's not it can be installed with the following command:

msdtc -install

You can configure the MSDTC service using sc.exe. Set the service to start automatically and start the service:

sc config msdtc start= auto
sc start msdtc

Note you will need administrator privilege to perform the above.

Then you should be able to configure it in the Component Services.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.