5 lines
243 B
Plaintext
5 lines
243 B
Plaintext
Set WshShell = CreateObject("WScript.Shell")
|
|
' Use cmd /c to run electron.cmd which is what npm start uses
|
|
' This ensures all environment variables and paths are correctly set
|
|
WshShell.Run "cmd /c .\node_modules\.bin\electron.cmd .", 0, False
|