Convert-CMApplication
Converts an application object.
Syntax
Convert-CMApplication
-InputObject <PSObject>
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[<CommonParameters>]
Description
The Convert-CMApplication cmdlet converts an application object to an application SDK object or an application SDK object to an application object.
Note
Run Configuration Manager cmdlets from the Configuration Manager site drive, for example PS XYZ:\>
. For more information, see getting started.
Examples
Example 1: Get an application object and convert it
PS XYZ:\> Get-CMApplication -ApplicationName "Application01" | Convert-CMApplication
This command gets the application object named Applicaton01 and uses the pipeline operator to pass the object to Convert-CMApplication, which converts the application object to an application SDK object.
Example 2: Get an SDK application object and convert it
PS XYZ:\> $SdkApp = ConvertTo-CMApplication -InputObject (Get-CMApplication -ApplicationName "Application01")
PS XYZ:\> Convert-CMApplication -InputObject $SdkApp
The first command converts the application named Application01 to an application SDK object and stores the object in the $SdkApp variable.
The second command converts the SDK application object in $SdkApp to an application object.
Parameters
-DisableWildcardHandling
This parameter treats wildcard characters as literal character values. You can't combine it with ForceWildcardHandling.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
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 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-InputObject
Specifies an application object or application SDK object. To obtain an application object, use the Get-CMApplication cmdlet. To obtain an application SDK object, use the ConvertTo-CMApplication cmdlet.
Type: | PSObject |
Aliases: | IResultObject, Application, ProviderApplicationObject, ApplicationGroup |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Inputs
System.Management.Automation.PSObject
Outputs
System.Object