Open external application with electron

I tell you my problem. I want to create a personal app with Electron to manage other apps on my device. The problem is that I try in different ways to create a link that opens my own .exe applications but this is not allowed. Is there a way to do it or is it impossible?
I leave my link code below.

`

<div class="col-12 col-sm-12 text-center">
        <h1>"Aplication"</h1>
        <button>
            <a href="options/hollow.bat">Hollow</a>
        </button>
    </div>

This link refers to a .bat file.

START D:/SteamLibrary/steamapps/common/HollowKnight/hollow_knight.exe

`