8 lines
300 B
PowerShell
8 lines
300 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
$root = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
|
|
powershell -ExecutionPolicy Bypass -File (Join-Path $root 'stop_domain_web.ps1')
|
|
powershell -ExecutionPolicy Bypass -File (Join-Path $root 'stop_domain_api.ps1')
|
|
|
|
Write-Output 'domainCheck Web/API 栈已停止'
|