Constantine Posted July 6, 2011 Report post Posted July 6, 2011 Good Morning, Yesterday i deployed a SCCM VNext beta. also i deployed client agents on desktops and on servers as well. In Assets and Compliance, in All systems group there are as client OS-es also Server OS-es as well. how i can deploy a specific application lets say on Windows 7? Quote Share this post Link to post Share on other sites More sharing options...
Trevor Sullivan Posted July 6, 2011 Report post Posted July 6, 2011 You have to create a query-based collection that includes only Windows 7 systems. You can use the Operating System.Caption property to build your collection query. Hope this helps. Cheers, Trevor Sullivan http://trevorsullivan.net http://twitter.com/pcgeek86 1 Quote Share this post Link to post Share on other sites More sharing options...
Constantine Posted July 7, 2011 Report post Posted July 7, 2011 i'll try that... Quote Share this post Link to post Share on other sites More sharing options...
tobias-tobin Posted July 7, 2011 Report post Posted July 7, 2011 Here's the query we use to isolate Windows 7 systems: select distinct SMS_R_System.Name, SMS_R_System.SMSAssignedSites, SMS_R_System.IPAddresses, SMS_R_System.IPSubnets, SMS_R_System.OperatingSystemNameandVersion, SMS_R_System.ResourceDomainORWorkgroup, SMS_R_System.LastLogonUserDomain, SMS_R_System.LastLogonUserName, SMS_R_System.SMSUniqueIdentifier, SMS_R_System.ResourceId, SMS_R_System.NetbiosName from SMS_R_System where SMS_R_System.OperatingSystemNameandVersion like "%Workstation 6.1%" Quote Share this post Link to post Share on other sites More sharing options...
Trevor Sullivan Posted August 2, 2011 Report post Posted August 2, 2011 You can also build a task sequence to install your application, and then set the appropriate conditionals on each task sequence item. This is a powerful, flexible, and easy method of deploying applications, which is used by many ConfigMgr folks out there. Hope this helps. Cheers, Trevor Sullivan http://trevorsullivan.net http://twitter.com/pcgeek86 Quote Share this post Link to post Share on other sites More sharing options...