Skip to content

Instantly share code, notes, and snippets.

@IvanLieckens
IvanLieckens / Unicorn Synch Online.ps1
Created June 25, 2021 06:34
Custom Release Pipeline Steps
Import-Module .\Unicorn.psm1
function Wait-UnicornOnline
{
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[string]$Uri,
[int]$MaxAttempts = 10
)
@IvanLieckens
IvanLieckens / Deploy-SCCH.ps1
Last active March 7, 2022 13:39
Deploy SCCH Connector to Azure Web App using MSDeploy and the WDP Package from dev.sitecore.net
[CmdletBinding(DefaultParameterSetName = "no-arguments")]
param(
[Parameter(HelpMessage = "Name of the resource group in Azure to target.")]
[string]$ResourceGroupName,
[Parameter(HelpMessage = "Name of the web app in Azure to target.")]
[string]$WebAppName,
[Parameter(HelpMessage = "Path to the WDP to deploy to the target.")]
[string]$WdpPackagePath,