Export-CMApplication
Exports an application from Configuration Manager.
Parameter Set: SearchByNameMandatory
Export-CMApplication -Name <String[]> -Path <String> [-Comment <String> ] [-IgnoreRelated] [-OmitContent] [-Confirm] [-WhatIf] [ <CommonParameters>]
Parameter Set: SearchByIdMandatory
Export-CMApplication -Id <String[]> -Path <String> [-Comment <String> ] [-IgnoreRelated] [-OmitContent] [-Confirm] [-WhatIf] [ <CommonParameters>]
Parameter Set: SearchByValueMandatory
Export-CMApplication -InputObject <IResultObject> -Path <String> [-Comment <String> ] [-IgnoreRelated] [-OmitContent] [-Confirm] [-WhatIf] [ <CommonParameters>]
The Export-CMApplication cmdlet exports an application to a file, and copies the content to a separate folder if OmitContent is $False. Specify a file path to the location where you want to export the application.
Specifies a comment for the exported application.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies an array of IDs for the exported application.
Aliases |
CIId |
Required? |
true |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Indicates that related objects, such as application dependencies, superseded applications, or related categories and global conditions, are exported.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies an application object. To obtain an application object, use the Get-CMApplication cmdlet.
Aliases |
none |
Required? |
true |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies an array of names for the exported application.
Aliases |
LocalizedDisplayName |
Required? |
true |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Indicates that the cmdlet exports related content to a separate folder in the same location as the .zip file.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies a path of the package. The package file has a .zip extension.
Aliases |
none |
Required? |
true |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Prompts you for confirmation before running the cmdlet.
Required? |
false |
Position? |
named |
Default Value |
false |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Required? |
false |
Position? |
named |
Default Value |
false |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
The input type is the type of the objects that you can pipe to the cmdlet.
The output type is the type of the objects that the cmdlet emits.
This command exports the Configuration Manager application named BL_App_01 to the file named Test.zip.
PS C:\> Export-CMApplication -Name "BL_App_01" -Path "\\Contoso01\CM\Toolbox\Test.zip"