Source: Service Control Manager
Event ID: 7000
The AD FS 2.0 Windows Service service failed to start due to the following error:
The service did not respond to the start or control request in a timely fashion.
This is typically experienced on a slow-performing machine.
Disable generatePublisherEvidence for .NET 3.5
Remarks
This element was introduced in the .NET Framework version 3.5 and applies only to that version. It has no effect in later versions of the .NET Framework.
The common language runtime (CLR) tries to verify the Authenticode signature at load time to create Publisher evidence for the assembly. However, by default, most applications do not need Publisher evidence. Standard CAS policy does not rely on the PublisherMembershipCondition. You should avoid the unnecessary startup cost associated with verifying the publisher signature unless your application executes on a computer with custom CAS policy, or is intending to satisfy demands for PublisherIdentityPermission in a partial-trust environment. (Demands for identity permissions always succeed in a full-trust environment.)
<configuration> <runtime> <generatePublisherEvidence enabled="false"/> </runtime> </configuration>
<configuration>
<runtime>
<generatePublisherEvidence enabled="false"/>
</runtime>
</configuration>
Option 2:
Increase the default timeout value observed by SCM:
Option 3:
Ilantz edited Revision 4. Comment: added the hosts workaround - point crl.micorosft.com to 127.0.0.1