Thanks Roger.
I saw those in the queries for the CM12 version. Very useful btw, but I was asking what query would return the currently installing application (my question sucked), not the status of all the apps but the one saying "Installing" in Software Center. Like with CCM_ExecutionRequestEx for the current installing program. I want to return the data for that single currently running entry: Application name, deploymenttype name etc. -R From: [email protected] [mailto:[email protected]] On Behalf Of Roger Zander Sent: Dienstag, 25. Juni 2013 13:44 To: [email protected] Subject: RE: [mssms] CM12: Currently running application installation, Client Center The main Page for CM12 related Client Center questions is on: http://sccmclictr.codeplex.com where you can use/link your LiveID Account ... For the Application Model, all needed information is in the Class CCM_Application: get-wmiobject -query "SELECT * FROM CCM_Application" -namespace "ROOT\ccm\ClientSDK" http://msdn.microsoft.com/en-us/library/jj874280.aspx The Property "EvaluationState" and "InstallState" will show you the current status of an Application... To get an adhoc List of all pending Application, i would run something like: get-wmiobject -query "SELECT * FROM CCM_Application" -namespace "ROOT\ccm\ClientSDK" | where {$_.EvaluationState -gt 5 } For SoftwareUpdates, the corresponding Class is CCM_SoftwareUpdate http://msdn.microsoft.com/en-us/library/jj155451.aspx The CCM_ExecutionRequestEx Class does still exists, so I assume it's for the legacy package Model... Regards Roger _____ From: [email protected] To: [email protected] Subject: RE: [mssms] CM12: Currently running application installation, Client Center Date: Tue, 25 Jun 2013 12:45:06 +0200 A possibility, but then I need (another) account for that. Hoping Roger chimes in as last time J -R From: [email protected] [mailto:[email protected]] On Behalf Of Craig Andrew (OIZ) Sent: Dienstag, 25. Juni 2013 11:11 To: [email protected] Subject: AW: [mssms] CM12: Currently running application installation, Client Center perhaps try the discussions link on sourceforge? http://sourceforge.net/p/smsclictr/discussion/ Von: [email protected] [mailto:[email protected]] Im Auftrag von Roland Janus Gesendet: Dienstag, 25. Juni 2013 10:58 An: [email protected] Betreff: [mssms] CM12: Currently running application installation, Client Center I was using root\ccm\SoftMgmtAgent and a query like this "select * from ccm_executionrequestex where runningstate = 'running'" for CM07 to retrieve the currently running program installation. Thanks to Roger for that as it is in Client Center for CM07. Now I'm looking for the equivalent on CM12 for applications. Any pointers? Roger? J -Roland

