5 lines
265 B
Plaintext
5 lines
265 B
Plaintext
Dim WshShell
|
|
Set WshShell = CreateObject("WScript.Shell")
|
|
WshShell.CurrentDirectory = CreateObject("Scripting.FileSystemObject").GetParentFolderName(WScript.ScriptFullName) & "\electron-launcher"
|
|
WshShell.Run "cmd /c npx electron .", 0, False
|
|
Set WshShell = Nothing |