Files
GacUI/.github/Scripts/copilotDebug_RunCommand.ps1
2026-02-05 15:53:47 -08:00

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