mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-03-23 15:52:56 +08:00
11 lines
285 B
PowerShell
11 lines
285 B
PowerShell
param(
|
|
[Parameter(Mandatory=$true)]
|
|
[string]$Command
|
|
)
|
|
|
|
. $PSScriptRoot\copilotShared.ps1
|
|
$cdbpath = GetCDBPath
|
|
$commandLine = "echo .remote_exit | `"$($cdbpath)`" -remote npipe:server=.,pipe=VlppUnitTest -clines 0 -c `"$Command`""
|
|
echo $commandLine
|
|
cmd.exe /S /C $commandLine
|