Add hidden startup launchers for backend and overlay

This commit is contained in:
2026-05-23 14:47:32 +02:00
parent 26feac2fb1
commit bb5571784a
3 changed files with 186 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
Option Explicit
Dim shell, fso, scriptDir, psScript, command
Set shell = CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
scriptDir = fso.GetParentFolderName(WScript.ScriptFullName)
psScript = """" & fso.BuildPath(scriptDir, "start_streamdeck.ps1") & """"
command = "powershell.exe -NoProfile -ExecutionPolicy Bypass -WindowStyle Hidden -File " & psScript
shell.Run command, 0, False