Thanks stirrin, can you elaborate?
Main Topics
Browse All TopicsRunning SMS 2003 and we recently retired a distribution point. It was a protected distribution point so I assigned the IP range it was resposible for, to another distribution point. I went back and edited a package that gets copied out to all the DPs frequently (in this case it was the ITMU scan package) and I took the retired distribution point off of the list. This way I would not get errors that the package version could not be copied out to that DP.
My site status is critical due to errors in the component "sms_distribution_manage".
Here's the error in the log:
----------------------
SMS Distribution Manager failed to remove package "GA10011F" from distribution path "MSWNET:["SMS_SITE=GA1"]\\
Possible cause: The distribution point might not be accessible to SMS Distribution Manager running on the site server. Solution: If users are currently accessing the package files on the distribution point, disconnect the users first.
Package ID : GA10011F
Distribution Point : ["Display=\\gaact1\smspkgc
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
OK, Can you try running these SQL queries on the central site DB and the Primary Site to which the removed DP was connected to:
Here is an example of what you could do:> Suppose the invalid Dp share that no longer exists is:> \\ABC\DP$ then is what you can do:>
Select * from pkgservers where NALpath like '%\\ABC\DP$'
Select * from pkgstatus where pkgserver like '%\\ABC\DP$'
Next delete entries from any of the above tables to the invalid dp share.
Delete from pkgservers where NALpath like '%\\ABC\DP$'
Delete from pkgstatus where pkgserver like '%\\ABC\DP$'
This removed the pending deletions from the deleted Dp and allows the package refresh to occur as expected.
Hi paul.
I agree with stirrin. It might be necessary to edit the two SQL database tables pkgservers and/or pkgstatus directly, if you still have references to a now deleted Distribution Point (DP) in the database.
As always, when poking around directly in the SQL database be very careful, and my advice is to make sure to have a backup of the site (run the SMS Backup Task) first.
Unless your DP was a DP share (a DP can be specified as etiher a DP system or a DP share) named DP$ on the server ABC, then you want to run the below queries to identify the records to get rid of:
Select * from pkgservers where NALpath like '%<server>%'
Select * from pkgstatus where pkgserver like '%<server>%'
, where <server> is the name of the DP server you have removed.
If these queries return any results, go on to delete those records:
Delete from pkgservers where NALpath like '%<server>%'
Delete from pkgstatus where pkgserver like '%<server>%'
Then try restart the SMS Distribution Manager component and monitor the distmgr.log for errors again.
Cheers
Gantriis
Business Accounts
Answer for Membership
by: stirrinPosted on 2008-01-08 at 02:45:54ID: 20607342
You may have to do some manual cleanup of the pkg files in distmgr.box