5 lines
237 B
Plaintext
5 lines
237 B
Plaintext
Set WshShell = CreateObject("WScript.Shell")
|
|
Set Fso = CreateObject("Scripting.FileSystemObject")
|
|
appDir = Fso.GetParentFolderName(WScript.ScriptFullName)
|
|
WshShell.Run "cmd /c cd /d """ & appDir & """ && start-app.bat _hidden", 0, False
|