8 lines
313 B
PowerShell
8 lines
313 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
$root = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
|
|
powershell -ExecutionPolicy Bypass -File (Join-Path $root 'start_domain_api.ps1')
|
|
powershell -ExecutionPolicy Bypass -File (Join-Path $root 'start_domain_web_background.ps1')
|
|
|
|
Write-Output 'domainCheck Web/API 栈已启动'
|