Skip to content
How to Unlock ConfigMgr SCCM Collections Packages and Programs

How to Unlock ConfigMgr SCCM Collections Packages and Programs

Written By Anoop C Nair
Last Updated July 30, 2024
Posted In SCCM
SHARE

How to Unlock ConfigMgr SCCM Collections Packages and Programs. I thought of sharing one of the interesting TechNet threads, as finding these details through Google or Bing is difficult.

Collections enable you to generate a group of machine(s) with similar characteristics. These collections can then be used to deliver software or build queries. By default, you will have a top-level collection that includes all the MECM-installed systems in your department.

Application packaging in SCCM is making and packaging a software installation in a format that can be delivered and installed on devices within an organization. The package is one of the oldest workloads in SCCM.

Like the application, the package has Summary, Programs, and Deployment tabs at the bottom of the console window. The tabs show which package is deployed to which Collection and the Program tab gives details regarding command lines.

Patch My PC

Please Note “Editing the DataBase Directly is NOT Supported ”. Always take a backup before performing this activity.

Index
Prerequisites- How to Unlock ConfigMgr SCCM Collections Packages and Programs
Collections Repair (How to Unlock ConfigMgr SCCM Collections Packages and Programs)
Advertisements Repair (How to Unlock ConfigMgr SCCM Collections Packages and Programs)
How to Unlock ConfigMgr SCCM Collections Packages and Programs – Table 1

Prerequisites- How to Unlock ConfigMgr SCCM Collections Packages and Programs

Before attempting any of these changes in SQL tables, the following activities should be performed.

  • Disable and stop the Windows Management service. (Don’t forget to enable and start the services ).
  • Stop both the SMS_EXECUTIVE and SMS_SITE_COMPONENT_MANGER

Extracts from Forum Thread !!! (Note! TMP = site of OLD central site and IT1 = Site code of “Current/Existing” central site)

Collections Repair (How to Unlock ConfigMgr SCCM Collections Packages and Programs)

I ran the following SQL query to list all of the data in the table Collections:
Select * from collections

I noticed that all of the column “Flags” values were set to a value of 2 instead of 18. I referenced the following article: http://www.myitforum.com/articles/1/view.asp?id=396.

How to Unlock ConfigMgr SCCM Collections Packages and Programs Fig. 1
How to Unlock ConfigMgr SCCM Collections Packages and Programs Fig. 1

I ran the following SQL query to correct a single row and saw the result:
update Collections set Flags=’18’ where SiteID=’IT100A2C’

Once I saw it worked, I ran the following query to update all rows whose names began with IT1 and reset the value to 18.
update Collections set Flags = ’18’ where SiteID like ‘it1%’

Packages Repair (Unlock procedure)I ran the following SQL query to list all of the data in the table SMSPackages:
Select * from SMSPackages

I ran the following SQL query to replace all rows with a SourceSite value of TMP and change it to IT1 :
update SMSPackages set SourceSite=’IT1‘ where SourceSite=’TMP

Advertisements Repair (How to Unlock ConfigMgr SCCM Collections Packages and Programs)

I ran the following SQL query to list all of the data in the table ProgramOffers:
Select * from ProgramOffers

I ran the following SQL query to replace all rows with a SourceSite value of TMP and change it to IT1:
update ProgramOffers set SourceSite=’IT1‘ where SourceSite=’TMP

Note – This post is provided “AS IS” with no warranties, confers no rights, and is not supported by the author.

We are on WhatsApp. To get the latest step-by-step guides and news updates, Join our Channel. Click here –HTMD WhatsApp.

Author

Anoop C Nair has been Microsoft MVP from 2015 onwards for 10 consecutive years! He is a Workplace Solution Architect with more than 22+ years of experience in Workplace technologies. He is also a Blogger, Speaker, and leader of the Local User Group Community. His main focus is on Device Management technologies like SCCM and Intune. He writes about technologies like Intune, SCCM, Windows, Cloud PC, Windows, Entra, Microsoft Security, Career, etc..

Written by

Anoop C Nair is Workplace Technology solution architect with 25+ years of experience in global enterprise organizations such as JP Morgan, Capgemini, etc. Microsoft Certified Trainer. Microsoft MVP from 2015 onwards for consecutive 11+ years! He also conducts Intune and modern workplace tech training for enterprise organizations. He is Blogger, Speaker, and Founder of HTMD Community and HTMD Conference. His main focus is on Device Management technologies like Intune, Windows, Cloud PC. He writes about technologies like Intune, SCCM, Windows, Cloud PC, Windows, Entra, Microsoft Security.

Discussion · 2 comments

Join the discussion

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

Related guides

Intune

Windows 11 KB5101650 KB5099414 July 2026 Patch and 3 Zero Day Vulnerabilities and 570 Flaws

Key Takeaways Windows 11 KB5101650 KB5099414 July 2026 Patch and 3 Zero Day Vulnerabilities and 570 Flaws! In the July 2026 Patch, Microsoft introduced new features designed to improve the overall Windows experience. The update adds enhancements to Windows Update for more flexible update management and introduces Point-in-Time Restore, providing an additional recovery option for […]

AC Anoop C Nair 9 min read
Intune

2026 June KB5094126 KB5093998 Windows 11 Patch | 3 Zero Day Vulnerabilities and 200 Flaws

Key Takeaways 2026 June KB5094126 KB5093998 Windows 11 Patch | 3 Zero Day Vulnerabilities and 200 Flaws! The June 2026 Windows 11 Patch Tuesday update brings several improvements to File Explorer. It adds support for additional archive formats, including UU, CPIO, XAR, and NuGet Packages (NUPKG). The update also preserves View and Sort preferences in […]

AC Anoop C Nair 10 min read
Intune

2026 May KB5089549 KB5087420 Windows 11 Patch | 0 Zero Day Vulnerabilities and 120 Flaws

Key Takeaways The Windows 11 May 2026 Patch KB5089549 KB5087420 Update brings important security fixes, performance improvements, and reliability enhancements across the operating system. The update introduces new features such as Xbox Mode for gaming, File Explorer improvements, enhanced input and sharing experiences, better taskbar and Windows Hello reliability, and additional enterprise management capabilities for […]

AC Anoop C Nair 8 min read
SCCM

ConfigMgr 2603 Introduces New Early Update Enrollment Process

Key Takeaways In this post we are discussing the ConfigMgr 2603 Introduces New Early Update Enrollment Process. Microsoft has officially released Configuration Manager version 2603 to the Early Update Ring, giving organizations an opportunity to test upcoming improvements before the global production rollout. The release is targeted at enterprises running ConfigMgr version 2409 or later […]

AC Anoop C Nair 3 min read