15 lines
371 B
PowerShell
15 lines
371 B
PowerShell
param(
|
|
[string]$Password,
|
|
[switch]$SkipRecycle,
|
|
[switch]$SkipMigrations
|
|
)
|
|
|
|
$deployScript = Join-Path $PSScriptRoot "scripts\deploy-ftp1.ps1"
|
|
$profilePath = Join-Path $PSScriptRoot "scripts\deploy-ftp.profile.psd1"
|
|
|
|
& $deployScript `
|
|
-ProfilePath $profilePath `
|
|
-Password $Password `
|
|
-SkipRecycle:$SkipRecycle `
|
|
-SkipMigrations:$SkipMigrations
|