initial build process script

This commit is contained in:
2026-05-27 15:43:21 +02:00
parent 284c296917
commit 5a5e232c24
3 changed files with 65 additions and 4 deletions

13
scripts/start.vbs Normal file
View File

@@ -0,0 +1,13 @@
Set WshShell = CreateObject("WScript.Shell")
Set FSO = CreateObject("Scripting.FileSystemObject")
strScriptDir = FSO.GetParentFolderName(WScript.ScriptFullName)
WshShell.CurrentDirectory = strScriptDir
pythonExe = strScriptDir & "\python\python.exe"
' Use cmd.exe /c (close when done) as a trusted bridge to launch the module
runCommand = "cmd.exe /c " & Chr(34) & pythonExe & Chr(34) & " -m wce_crm.gui"
' Set back to 0 (Hidden).
WshShell.Run runCommand, 0, False