Event ID:7022 – Net.MSmq, Net.Tcp and Net.Pipe “Start Pending /Automatic (Delayed Start)”

This post has been republished via RSS; it originally appeared at: Microsoft Tech Community - Latest Blogs - .

Symptoms

========= 

Unable to start Net.MSmq, Net.Tcp and Net.Pipe services and found the below Event logs.

The Net.Pipe Listener Adapter service hung on starting\ The Net.Msmq Listener Adapter service hung on starting\The Net.Tcp Listener Adapter service hung on starting. 

 

                                                 Shpura_0-1648648474301.png

 

Unable to start any dependency services and failing with Error: 1061.

 

                                              Shpura_1-1648648474309.png

 

 

Troubleshooting Steps:

===============

 

Review the applicationHosts.config file at below path C:\Windows\System32\inetsrv\config\applicationHosts.config. and check if net.tcp, net.pipe, net.msmq and msmq.formatname entries are missing from listenerAdapters tag and only see the below details.

<listenerAdapters>
   <add name="http" />
</listenerAdapters>  

 

 

Solution:

=======

 

Modify the applicationHosts.config file as below.

From:

<listenerAdapters>

     <add name="http" />

</listenerAdapters>

 

To:

<listenerAdapters>

   <add name="http" />

   <add name="net.tcp" identity="S-1-5-80-3579033775-2824656752-1522793541-1960352512-462907086" />

   <add name="net.pipe" identity="S-1-5-80-2943419899-937267781-4189664001-1229628381-3982115073" />

   <add name="net.msmq" identity="S-1-5-80-89244771-1762554971-1007993102-348796144-2203111529" />

   <add name="msmq.formatname" identity="S-1-5-80-89244771-1762554971-1007993102-348796144-2203111529" />

</listenerAdapters>

 

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.