custom collection
-
21 Maret 2012 22:26
quick question
i want to make a dynamic collection that show all the system that has agent installed, any guide how to make query would be appriciate
- Jenis yang Diubah Matthew Hudson [MVP]MVP, Moderator 21 Maret 2012 23:28
Semua Balasan
-
21 Maret 2012 22:32
try this
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.Client
hope it help
Syed Kasif
- Disarankan sebagai Jawaban oleh Matthew Hudson [MVP]MVP, Moderator 21 Maret 2012 23:28
- Ditandai sebagai Jawaban oleh broy23 22 Maret 2012 14:44
-
22 Maret 2012 0:37
There is already a default query built-in for this, just use it.Jason | http://blog.configmgrftw.com | Twitter @JasonSandys
- Ditandai sebagai Jawaban oleh Rob Marshall - MVPMVP, Moderator 22 Maret 2012 10:18
-
22 Maret 2012 10:17Moderator
There is already a default query built-in for this, just use it.
Jason | http://blog.configmgrftw.com | Twitter @JasonSandys
Jason is spot on ... this already exists .. the query is called All Client Systems
You can create your collection and then import this built-in query.
You'll find the query itself in the Computer Management\Queries node ...
- Ditandai sebagai Jawaban oleh broy23 22 Maret 2012 14:44
-
22 Maret 2012 14:44thanks jason /syed both