go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/providers/os/detector/windows/wmi_unix.go (about)

     1  // Copyright (c) Mondoo, Inc.
     2  // SPDX-License-Identifier: BUSL-1.1
     3  
     4  //go:build linux || darwin || netbsd || openbsd || freebsd
     5  // +build linux darwin netbsd openbsd freebsd
     6  
     7  package windows
     8  
     9  import "go.mondoo.com/cnquery/providers/os/connection/shared"
    10  
    11  func GetWmiInformation(conn shared.Connection) (*WmicOSInformation, error) {
    12  	return powershellGetWmiInformation(conn)
    13  }