FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue

FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue. Let’s check how to get rid of this alert reported under SCCM DP Configuration Status. Type Error:Failed To Create Virtual Directory.

There is a tool part of the SCCM server toolkit for monitoring the distribution point activities. The replication of packages, the backlog of package replication, etc. Check out How To Monitor SCCM DP Using Job Queue Manager Tool.

I am sure all of us would have gone through this annoying issue and realized it’s not causing any service interruption for core SCCM Components then left it.

FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue
FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue

But what about the DP status? When checked under Distribution Point Configuration Status Tab, it stays in the same state. It seems the DP configuration is failed.

Patch My PC
FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue 1
FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue

Now the real-time errors also get ignored in this perception because of the Virtual Directory creation issue.

What is the real issue? Failed To Create Virtual Directory?

FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue 2
FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue

The possible cause mentioned in this screenshot is not the real cause, and if you try to distribute content to this DP, it works just fine. Failed To Create Virtual Directory?

Solution | FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue

To fix this issue with SCCM DP Monitoring Error Failed To Create Virtual Directory Issue, you need to follow the steps below:

NOTE!Make sure you have a good backup of the site DB before proceeding further.

Adaptiva
  1. Run the following select statement to find the Distribution Points in this state:
select * from dbo.DistributionStatus where InsStr2 = '3010'

2. Once identified, then Delete a record of an affected DP with:

delete from dbo.DistributionStatus where ID = <DPID of affected DP identified by above command>

NOTE: MS Doesn’t support this DB tweaking, and you should involve MS Engineer before executing these SQL statements.

NOTE!Test in your Lab before you implement it in Production. Execute SQL code at your own risk. We don’t take any responsibility.

Disclaimer – The information provided on the site is for general informational purposes only. All information on the site is provided in good faith; however, we make no representation or warranty of any kind, express or implied, regarding the accuracy, adequacy, validity, reliability, availability, or completeness of any information on the website.

Author

My name is Deepak Rai, and I am a Technical Lead on SCCM and Intune with more than 14 years of experience in IT. My main domain is SCCM (AKA ConfigMgr, CB, MECM, etc.), Intune, and Azure (Runbooks). I have worked on several platforms (Active Directory, Exchange, Veritas NETBACKUP, Symantec Backup Exec, NDMP devices Like Netapp, EMC Data Domain, Quantum using Backup Exec 2010 and 2012, HP storage works 4048 MSL G3, Data Deduplication related troubleshooting.) in these 13 years but at last ended up to the technology from which I started as IT Engineer (SCCM).

10 thoughts on “FIX SCCM DP Monitoring Error Failed To Create Virtual Directory Issue”

  1. Same message here but InsStr2 is empty. The DP works fine except of the annoying error status message. Unfortunately your solution don’t work for me.

    Reply
    • I could fix it now by changing the DP temporary to a pull DP. If you have the same issue and you already have a pull DP change it to push and back to pull should also work. I guess the IIS will be reconfigured by this action, anyway the error message has gone now.

      Reply
  2. Hi Deepak,

    can you please explain little bit more on -InsStr2 and deletion of this using:
    delete from dbo.DistributionStatus where ID = .
    => During the issue which you have faced
    -> was the IIS working fine..
    -> Distribution point App pool was working or not?

    i never seen this kind of issue till now, so wanted to know little bit more on this.

    regards,
    Aswani

    Reply
    • Yes Sure. Yes IIS was Working fine. Distribution Point App Pool was working. You can see this in Monitoring Tab once this reported. Screenshots will give you more idea. All these are taken from the Lab where we were reproducing this issue.

      Reply
  3. I had the same message for ages and couldn’t get rid of it.
    Your query didn’t work for me – I had nothing showing ‘3010’ on InsStr2. However, I used the date and time stamp to find the offending message in the DB, and then deleted it using:

    delete from dbo.distributionstatus where MessageType = ‘8’ and LastStatusMsgID = ‘xxxx’

    Where ‘xxxx’ matched only the line I was interested in (I think it was 2364?).

    Then went back to the console and refreshed the DP and error was cleared.

    Reply
  4. I have also faced the same issue and the following command works for me.

    delete from dbo.DistributionStatus where MessageType = ‘8’ and LastStatusMsgID = ‘2344’

    Thank you.

    Reply

Leave a Comment

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