If I’m thinking correctly, all applications deployed to user collections are 
published to the app catalog. As long as that’s the case, you can use a 
Powershell script to generate a list of applications like this. Sorry if it’s 
terrible, I still consider myself a powershell noob.

$UserApps = @{}

$deployments = Get-CMDeployment

foreach ($deployment in $deployments)
{
$ApplicationName = $deployment.softwarename
$CollectionID = ($deployment | Select-Object -ExpandProperty CollectionID)

if ((Get-CMUserCollection -CollectionId $CollectionID) -ne $null)
{
   $CollectionName = Get-CMUserCollection -CollectionId $CollectionID | 
Select-Object -ExpandProperty Name
  $userApps.Add($ApplicationName, $CollectionName)

 }

}

$UserApps


From: [email protected] [mailto:[email protected]] On 
Behalf Of Schwan, Phil
Sent: Monday, July 14, 2014 12:57 PM
To: [email protected]
Subject: RE: [mssms] Application Catalog

No.  You would need a SQL query for all apps with certain user experience 
settings.

-Phil

_________________________________________________________________
Phil Schwan | Technical Architect, Enterprise Windows Services
Project Leadership Associates | 2000 Town Center, Suite 1900, Southfield, MI 
48075
Lync: 312.756.1626  Mobile: 419.262.5133
www.projectleadership.net<http://www.projectleadership.net/>
[Description: Description: Description: Arrow email]Lead with Strategy. 
Leverage Technology. Deliver Results.
[linkedin_logo-19x20]<http://www.linkedin.com/in/philschwan>[Twitter-Logo1-20x20]<https://twitter.com/philschwan>
 [wordpress-logo3] <http://myitforum.com/myitforumwp/author/philschwan>



From: [email protected]<mailto:[email protected]> 
[mailto:[email protected]] On Behalf Of JRIT
Sent: Monday, July 14, 2014 7:57 AM
To: [email protected]<mailto:[email protected]>
Subject: [mssms] Application Catalog

Folks,
Is there a way to see in CM12 console a a list of ALL applications/packages 
published in Application Catalog?
Thank you,

________________________________

PRIVILEGED AND CONFIDENTIAL. This email and any files transmitted with it are 
privileged and confidential and intended solely for the use of the individual 
or entity to whom they are addressed. If you have received this email in error 
please notify the sender. If you are not the named addressee you should not 
disseminate, distribute or copy this e-mail or any of its attachments.



________________________________

This message is intended for the sole use of the addressee, and may contain 
information that is privileged, confidential and exempt from disclosure under 
applicable law. If you are not the addressee you are hereby notified that you 
may not use, copy, disclose, or distribute to anyone the message or any 
information contained in the message. If you have received this message in 
error, please immediately advise the sender by reply email and delete this 
message.

Reply via email to