Skip to content

Latest commit

 

History

History
154 lines (105 loc) · 3.67 KB

File metadata and controls

154 lines (105 loc) · 3.67 KB

description: Import a query to Configuration Manager. external help file: AdminUI.PS.dll-Help.xml Module Name: ConfigurationManager ms.date: 12/29/2020 schema: 2.0.0 title: Import-CMQuery

Import-CMQuery

SYNOPSIS

Import a query to Configuration Manager.

SYNTAX

Import-CMQuery [-ImportFilePath] <String> [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf]
 [-Confirm] [<CommonParameters>]

DESCRIPTION

Use this cmdlet to import one or more queries to the Configuration Manager site. Configuration Manager queries define a WMI Query Language (WQL) expression to get information from the site database based on the criteria you provide.

You import a query that you exported from another site. For example, export a query from a test lab, and then import it to a production environment.

Use the Export-CMQuery cmdlet to export the query from another site. Configuration Manager exports the query to a managed object format (MOF) file.

For more information, see Introduction to queries in Configuration Manager.

Note

Run Configuration Manager cmdlets from the Configuration Manager site drive, for example PS XYZ:\>. For more information, see getting started.

EXAMPLES

Example 1

This command imports queries from the file C:\Export\Query.mof.

Import-CMQuery -ImportFilePath "C:\Export\Query.nof"

PARAMETERS

-DisableWildcardHandling

This parameter treats wildcard characters as literal character values. You can't combine it with ForceWildcardHandling.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ForceWildcardHandling

This parameter processes wildcard characters and may lead to unexpected behavior (not recommended). You can't combine it with DisableWildcardHandling.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ImportFilePath

Specify the path to the file to import. The file extension is .mof.

Type: String
Parameter Sets: (All)
Aliases: FileName, FilePath, Path

Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet doesn't run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Object

NOTES

RELATED LINKS

Get-CMQuery

Export-CMQuery

Invoke-CMQuery

New-CMQuery

Remove-CMQuery

Set-CMQuery

Introduction to queries in Configuration Manager