Announcement

Collapse
No announcement yet.

Laptops versus Desktops

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Laptops versus Desktops

    We have just received and installed Hyena Enterprise edition v8.6 and were pretty new to this application. I have been trying to run a query that will show me all of the desktops versus laptops in our domain. If anyone has any templates that i can use that would be greatly appreciated.

  • #2
    Re: Laptops versus Desktops

    I don't know of any method to determine that one. Maybe WMI might have something, but I'm not sure.

    Comment


    • #3
      Re: Laptops versus Desktops

      WMI can do it, see:
      http://blogs.technet.com/b/heyscriptingg...op-machine.aspx

      and...
      http://msdn.microsoft.com/en-us/library/aa394587(v=vs.85).aspx

      and...
      http://stackoverflow.com/questions/1...top-or-desktop

      You will have to create a custom WMI query in Hyena (and have the Enterprise Edition) for the Win32_SystemEnclosure class.
      Kevin Stanush
      SystemTools Software Inc.

      Comment


      • #4
        Re: Laptops versus Desktops

        You can also add Win32_Battery to the custom WMI query and get what your after.

        This isn't related to Hyena but you could use a group policy with a wmi filter as well.
        Namespace
        root\CIMv2

        Query
        Select * from Win32_Battery

        This works great for linking to your domain and filtering so that just laptops get the policy.

        Comment

        Working...
        X