diff --git a/Doc/Documentation.bat b/Doc/Documentation.bat deleted file mode 100644 index e03649f..0000000 --- a/Doc/Documentation.bat +++ /dev/null @@ -1,2 +0,0 @@ -@echo off -start "" "%~dp0.\html\index.html" diff --git a/Doc/Documentation.vbs b/Doc/Documentation.vbs new file mode 100644 index 0000000..5ed901a --- /dev/null +++ b/Doc/Documentation.vbs @@ -0,0 +1,6 @@ +' open_index.vbs +Set fso = CreateObject("Scripting.FileSystemObject") +scriptPath = WScript.ScriptFullName +scriptFolder = fso.GetParentFolderName(scriptPath) +htmlPath = scriptFolder & "\html\index.html" +CreateObject("WScript.Shell").Run """" & htmlPath & """", 1, False