From d05b46b899b0507b60699d7f66b98172e7fce5c0 Mon Sep 17 00:00:00 2001 From: pblivingston <71585805+pblivingston@users.noreply.github.com> Date: Thu, 6 Aug 2026 19:42:35 -0400 Subject: [PATCH] Command.Launch --- lib/command.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/command.ps1 b/lib/command.ps1 index ed1e0d1..9ea76b9 100644 --- a/lib/command.ps1 +++ b/lib/command.ps1 @@ -7,6 +7,11 @@ class Special : IRemote { return 'Command' } + [void] Launch() { + 'Launching Voicemeeter audio engine and GUI' | Write-Verbose + RunVm -kindId $this.kind.name + } + [void] RunMacrobuttons() { 'Launching the MacroButtons app' | Write-Verbose Start-Process -FilePath $(Join-Path -Path $this.remote.vmpath -ChildPath 'VoicemeeterMacroButtons.exe')