Export-UpdatePackage
Last updated
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.
Required?
true
Position?
1
Default Value
Accept Pipeline Input?
true (ByValue)
Accept Wildcard Characters?
false
Name of the package.
Required?
false
Position?
2
Default Value
Accept Pipeline Input?
false
Accept Wildcard Characters?
false
Path the update package should be saved under.
Required?
false
Position?
3
Default Value
Accept Pipeline Input?
false
Accept Wildcard Characters?
false
Contents of the "read me" instruction for the package
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.
Required?
false
Position?
named
Default Value
Accept Pipeline Input?
false
Accept Wildcard Characters?
false
Package tag.
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
Last updated
$diff = Get-UpdatePackageDiff -SourcePath C:\temp\SerializationSource -TargetPath C:\temp\SerializationTarget
Export-UpdatePackage -Path C:\temp\SerializationDiff.update -CommandList $diff -Name name