Client Management Suite

 View Only
  • 1.  Modify resources filter for Windows Embedded

    Posted Feb 14, 2011 09:29 AM

    Hello All,

    Currently, I am working on HP Thin Client Windows 7 Embedded. In Resources computers filter, the hardware just always been part of "all computers" filters.

    How can I make the hardware is part of "Windows Desktop Computer ('excluding site server')" filters as a default ?

     

    Thanks,

    Hendardi

     



  • 2.  RE: Modify resources filter for Windows Embedded

    Posted Feb 14, 2011 10:02 AM
    1. Right-click on the 'Windows Desktop Computer (excluding 'Site Servers')' filter and choose Clone, then provide it with a name. 
    2. With this cloned filter highlighted, in the right pane, click the 'Edit' button. 
    3. Under 'Inclusions,' under 'Filters included in this filter,' click 'Windows Desktops.' 
    4. In the left pane of the dialog box, scroll to 'Windows Embedded' or type 'Embedded' in the search field, then highlight Embedded. 
    5. Click the > button to add this as an included filter. 
    6. Click OK. 
    7. Click Save Changes. 

    Click 'Update Filter Membership.'  Does this show the results you expected?



  • 3.  RE: Modify resources filter for Windows Embedded

    Posted Feb 16, 2011 12:38 PM

    Hello,

    Thanks for your response. Unfortunately, windows embedded is not my altiris notification server. Currently, I am using Altiris Notification Server v7.0.7416. Did you know what is the version that already support Windows 7 Embedded ?

    Thanks,

    Hendardi



  • 4.  RE: Modify resources filter for Windows Embedded

    Posted Feb 16, 2011 01:00 PM

    It's present in SMP 7.0 SP5.. I can't guess when they added it.  Version is 7.0.8641.  You should consider upgrading to access the new filter.

    Here's the resolved query.  I noticed it includes Windows XP Embedded, and win32, so perhaps you'll want to modify the query for your purposes.

    SELECT
       [vri1_Computer].[Guid] AS [_ResourceGuid]
    FROM
       [vRM_Computer_Item] AS [vri1_Computer]
          INNER JOIN [Inv_AeX_AC_Identification] AS [dca2_AeX AC Identification]
             ON ([vri1_Computer].[Guid] = [dca2_AeX AC Identification].[_ResourceGuid])
          INNER JOIN [vComputerResource] AS [ajs3_vComputerResource]
             ON ([vri1_Computer].[Guid] = [ajs3_vComputerResource].[Guid])
    WHERE
       (
          (
             ([ajs3_vComputerResource].[IsManaged] = 1)
             AND
             (
                ([dca2_AeX AC Identification].[System Type] = N'Win32')
                OR
                ([dca2_AeX AC Identification].[System Type] = N'win32')
             )
             AND
             ([dca2_AeX AC Identification].[OS Name] LIKE N'Microsoft Windows XP Embedded')
          )
       )