18 lines
431 B
PowerShell
18 lines
431 B
PowerShell
param(
|
|
[string]$Password,
|
|
[switch]$SkipRecycle,
|
|
[switch]$SkipMigrations
|
|
)
|
|
|
|
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$scriptPath = Join-Path $PSScriptRoot "scripts/deploy-ftp1.ps1"
|
|
$profilePath = Join-Path $PSScriptRoot "scripts/deploy-ftp.profile.psd1"
|
|
|
|
& $scriptPath `
|
|
-ProfilePath $profilePath `
|
|
-Password $Password `
|
|
-SkipRecycle:$SkipRecycle `
|
|
-SkipMigrations:$SkipMigrations
|