Exports a Sitecore update package containing a serialization diff list.
Export-UpdatePackage [-CommandList] <List`1> [[-Name] <String>] [[-Path] <String>] [-Readme <String>] [-LicenseFileName <String>] [-Tag <String>]
The Export-UpdatePackage command generates a Sitecore update package containing a serialization diff list.
© 2010-2019 Adam Najmanowicz, Michael West. All rights reserved. Sitecore PowerShell Extensions
List of changes to be included in the package.
| Aliases | |
|---|---|
| Required? | true |
| Position? | 1 |
| Default Value | |
| Accept Pipeline Input? | true (ByValue) |
| Accept Wildcard Characters? | false |
Name of the package.
| Aliases | |
|---|---|
| Required? | false |
| Position? | 2 |
| Default Value | |
| Accept Pipeline Input? | false |
| Accept Wildcard Characters? | false |
Path the update package should be saved under.
| Aliases | |
|---|---|
| Required? | false |
| Position? | 3 |
| Default Value | |
| Accept Pipeline Input? | false |
| Accept Wildcard Characters? | false |
Contents of the "read me" instruction for the package
| Aliases | |
|---|---|
| Required? | false |
| Position? | named |
| Default Value | |
| Accept Pipeline Input? | false |
| Accept Wildcard Characters? | false |
file name of the license to be included with the package.
| Aliases | |
|---|---|
| Required? | false |
| Position? | named |
| Default Value | |
| Accept Pipeline Input? | false |
| Accept Wildcard Characters? | false |
Package tag.
| Aliases | |
|---|---|
| Required? | false |
| Position? | named |
| Default Value | |
| Accept Pipeline Input? | false |
| Accept Wildcard Characters? | false |
Help Author: Adam Najmanowicz, Michael West
Create an update package that transforms the serialized database state defined in C:\temp\SerializationSource into into set defined in C:\temp\SerializationTarget
$diff = Get-UpdatePackageDiff -SourcePath C:\temp\SerializationSource -TargetPath C:\temp\SerializationTarget
Export-UpdatePackage -Path C:\temp\SerializationDiff.update -CommandList $diff -Name name