From 90930842570295af9ceca5f65fc1fc2292062d66 Mon Sep 17 00:00:00 2001 From: Razvalyaev Date: Tue, 21 Oct 2025 05:39:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D0=BE=D0=BF=D1=8B=D1=82=D0=BA=D0=B0=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D1=8B=20=D0=B1=D0=B0=D1=82=D0=BD?= =?UTF-8?q?=D0=B8=D0=BA=D0=B0=20=D0=BD=D0=B0=20vbs,=20=D1=87=D1=82=D0=BE?= =?UTF-8?q?=D0=B1=D1=8B=20=D0=BD=D0=B5=20=D1=80=D1=83=D0=B3=D0=B0=D0=BB?= =?UTF-8?q?=D1=81=D1=8F=20=D0=B0=D0=BD=D1=82=D0=B8=D0=B2=D0=B8=D1=80=D1=83?= =?UTF-8?q?=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Doc/Documentation.bat | 2 -- Doc/Documentation.vbs | 6 ++++++ 2 files changed, 6 insertions(+), 2 deletions(-) delete mode 100644 Doc/Documentation.bat create mode 100644 Doc/Documentation.vbs 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