简体   繁体   中英

How do I strictly-type a variable as a specific WMI class?

In most cases, what you're expecting for a function parameter is [wmiclass] . However, I'm working in a custom namespace with a custom class. When I use Get-Member , it shows the type as:

System.Management.ManagementClass#ROOT\namespace\class_name

How do I specify that WMI class as a variable type? This example doesn't work:

param(
    [wmiclass#root\namespace\class_name]
    $Class
)

This returns

Unable to find type [System.Management.ManagementClass#ROOT\namespace\class_name].

For the purpose of this question, let's say I'm trying to target

ROOT\cimv2\Win32_Service

tagging c# since it's tangentially related and I'm curious if this is solved there

Can you do this?

Param (
    [PsTypeName("System.Management.ManagementClass#ROOT\namespace\class_name")]
    $Class
)

Or if using CIM instead of WMI, this:

Param (
    [PsTypeName("System.Management.Infrastructure.CimInstance#root/namespace/class_name")]
    $Class
)

TEST CASE:

function test {
    Param (
        [psTypename("System.Management.ManagementClass#ROOT\cimv2\StdRegProv")]
        $mine
    )
    $mine
}

$reg = [wmiclass]"\\.\root\cimv2:StdRegprov"
$reg | gm
#outputs:    TypeName: System.Management.ManagementClass#ROOT\cimv2\StdRegProv

[wmiclass]$wmi = ""
$wmi | gm
# outputs:    TypeName: System.Management.ManagementClass#\

test $wmi
# Errors:    test : Cannot bind argument to parameter 'mine', because PSTypeNames of the argument do not match the PSTypeName
# required by the parameter: System.Management.ManagementClass#ROOT\cimv2\StdRegProv.
# At line:1 char:6
# + test $wmi
# +      ~~~~
#     + CategoryInfo          : InvalidArgument: (:) [test], ParameterBindingArgumentTransformationException
#     + FullyQualifiedErrorId : MismatchedPSTypeName,test

test $reg
# outputs:    NameSpace: ROOT\cimv2
# Name                                Methods              Properties
# ----                                -------              ----------
# StdRegProv                          {CreateKey, Delet... {}

PowerShell V2 Test:

function testv2 {    
    param(
        [ValidateScript({($_ | Get-Member)[0].typename -eq 'System.Management.ManagementClass#ROOT\cimv2\StdRegProv'})]
        $mine
    )
    $mine
}

testv2 $reg

# outputs:    NameSpace: ROOT\cimv2
#
# Name                                Methods              Properties
# ----                                -------              ----------
# StdRegProv                          {CreateKey, Delet... {}

testv2 $wmi

# Error:    testv2 : Cannot validate argument on parameter 'mine'. The "($_ | gm)[0].typename -eq 'System.Management.ManagementClas
# s#ROOT\cimv2\StdRegProv'" validation script for the argument with value "" did not return true. Determine why the valid
# ation script failed and then try the command again.
# At line:1 char:7
# + testv2 <<<<  $wmi
#     + CategoryInfo          : InvalidData: (:) [testv2], ParameterBindingValidationException
#     + FullyQualifiedErrorId : ParameterArgumentValidationError,testv2

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM