Thought id share this with you, since its a pretty common problem after removing a distrubution point from site systems.
When doing this you must first remove the DP from every package in your enviroment. But people don´t do this to often...
And then they end up with errors from each package because SCCM can´t access the server and it can´t delite the package etc (distmgr.log).
It will also stil list the DP under each package.
So here is how to fix that!
1. Backup the ConfigMgr database.
2. Find the entries for the DP package share:
Queries for finding information that needs to be delited later on.
Select * from pkgservers where NALpath like '%\\<servername>%'
Select * from pkgstatus where pkgserver like '%\\<servername>%'
Select * from contentdpmap where serverpath like '%\\<servername>%'
Select * from DPinfo where servername like '%<servername>%'
3. Delete any entries from any of the above tables that point to the nonexistent share:
Queries for deliting information about the DP that was removed earlier.
Delete from pkgservers where NALpath like '%\\<servername>%'
Delete from pkgstatus where pkgserver like '%\\<servername>%'
Delete from contentdpmap where serverpath like '%\\<servername>%'
Delete from DPinfo where servername like '%<servername>%'
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Hi Guys
Thought id share this with you, since its a pretty common problem after removing a distrubution point from site systems.
When doing this you must first remove the DP from every package in your enviroment. But people don´t do this to often...
And then they end up with errors from each package because SCCM can´t access the server and it can´t delite the package etc (distmgr.log).
It will also stil list the DP under each package.
So here is how to fix that!
1. Backup the ConfigMgr database.
2. Find the entries for the DP package share:
Queries for finding information that needs to be delited later on.
3. Delete any entries from any of the above tables that point to the nonexistent share:
Queries for deliting information about the DP that was removed earlier.
And you are all done..
Cheers!
Share this post
Link to post
Share on other sites