This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$xmlPath = "$AppPath\sugcon.xml" | |
$pageTemplate = "Project/Community/Page" | |
$siteHome = "master:\content\Community\SUGCON\Home" | |
$sitepath = "master:\content\Community\SUGCON" | |
[string[]]$content = get-content $xmlPath | |
[xml]$xml = $content | |
$pages = $xml.rss.channel.item | %{ [PSCustomObject]@{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Open the following item: | |
# /sitecore/system/Modules/PowerShell/Script Library/SXA/SXA - Multisite/Content Editor/Context Menu/Clone Site | |
# inside the try{ } clause wrap its content with: | |
New-UsingBlock(New-Object -TypeName "Sitecore.SecurityModel.SecurityDisabler"){ | |
# all code that was inside the try clause before - goes here | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###### user settings start here | |
# Path to the tenant that you want to update | |
$tenantTemplatesPath = "master:\templates\Project\Showcase" | |
# Site that should be upgraded to the new template - ise asterisk to upgrade multiple sites. | |
$sitePath = "master:\content\Showcase\*" | |
# Path to the component for which you want to introduce your own data source | |
$componentPath = 'master:\layout\Renderings\Feature\Experience Accelerator\Page Content\Promo' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$tenantTemplatesPath = "master:\templates\Project\Showcase" | |
$sitePath = "master:\content\Showcase\int" | |
function Assert-FeatureTemplateInProject { | |
[CmdletBinding()] | |
param( | |
[parameter(Mandatory=$true)] | |
[String[]] $TenantTemplateFolder, | |
[parameter(Mandatory=$true)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$sitePath = "master:\content\Demo\Origin" | |
#get items but only those that are SXA pages | |
$pages = Get-ChildItem "$sitePath\Home" -Recurse -WithParent | | |
Where-Object { Test-BaseTemplate -Item $_ -Template "Foundation/Experience Accelerator/Multisite/Content/Page" } | |
#you can pipe it to further filtering here if you want to do it only for some pages | |
#get tag items that contain the word "Adam" in them | |
$tags = (@() + (Get-ChildItem "$sitePath\Data\Tags" -Recurse | | |
Where-Object { Test-BaseTemplate -Item $_ -Template "Feature/Experience Accelerator/Taxonomy/Datasource/Tag" } | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# branch that should be replaced - change the path | |
$items = Get-ChildItem master:\content\home2 -WithParent | |
# layout I want to set on my items | |
$layout = Get-Item 'master:\layout\Layouts\Foundation\Experience Accelerator\MVC\MVC Layout' | |
# Device on which I want to set it | |
$device = Get-LayoutDevice "Mobile" | |
foreach($item in $items){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#branch that should be replaced - change the path | |
$items = Get-ChildItem master:\content\home2 -WithParent | |
#Provide the names for your devices from which and to which things should be copied | |
$fromDevice = Get-LayoutDevice "Default" | |
$toDevice = Get-LayoutDevice "Mobile" | |
# for Final layout renderings you need to add -FinalLayout switch to the Add/Remove-Rendering cmdlets | |
# and provide the -Language for which you want to perform the operation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Item 'master:\layout\Renderings\Feature\Experience Accelerator\Media\Video' | Get-ItemReferrer | Show-ListView |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$sitecoreSerializationPath = "C:\inetpub\wwwroot\sitecore81\Data\serialization" | |
$unicornSerializationPath = "C:\Projects\sitecorepowershell\Trunk\Cognifide.PowerShell\serialization" | |
$serializationIds = gci $sitecoreSerializationPath -filter "*.item" -recurse | Get-Content -first 3 | ? { $_.Startswith("id:") } | % { $_.Substring(5,36).ToLower() } | |
$unicornIds = gci $unicornSerializationPath -filter "*.yml" -recurse | Get-Content -first 2 | ? { $_.Startswith("ID:") } | % { $_.Substring(5,36) } | |
"$($serializationIds.Count) items in Sitecore Serialization" | |
"$($unicornIds.Count) items in Unicorn Serialization" | |
Write-Host "---- Missing in Unicorn ----" |
