Non-Machine Collections
Updated: 22 May 2010 | 2 comments
This issue has been solved. See solution.
By default in NS, it appears that collections are always contain groups of machines. Is it possible to create collections of other non-machine assets? I am working on a little utility built off the SDK and it would be helpful to be able to build non-computer based collections.
Thanks for any suggestions you may offer.
discussion Filed Under:
Comments
Sure you can!
I have done this sort of thing on our asset system because I wanted to create collections of Helpdesk tickets. You can actually create collections out of anything that has a guid. I believe that the collection builder in the console only gives you access to computers, but if you select the option to enter SQL directly you can do something like this for example to get a collection of Network Printers
select [_ResourceGuid] as Guid from vAsset where [Asset Type] = 'Network Printer'
What Altiris is looking for when building a collection is a guid and nothing else, so when you enter your SQL, you can use whatever filters in your where clause you want, but just make sure that the only column you include in the select statement is guid.
I hope this helps!
That makes sense.
Thanks!
That worked. I have marked your response as the solution.
I appreciate your help,
Gaetano
Would you like to reply?
Login or Register to post your comment.