mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
21 lines
350 B
Batchfile
21 lines
350 B
Batchfile
@echo off
|
|
|
|
IF DEFINED ProgramFiles(x86) (
|
|
SET "_dmexec=C:\Program Files (x86)\BYOND\bin\dm.exe"
|
|
) ELSE (
|
|
SET "_dmexec=C:\Program Files\BYOND\bin\dm.exe"
|
|
)
|
|
|
|
ECHO Attempting to look for %_dmexec%
|
|
if exist "%_dmexec%" (
|
|
ECHO DM executable found!
|
|
) else (
|
|
ECHO DM executable not found.Exiting.....
|
|
GOTO end
|
|
)
|
|
|
|
"%_dmexec%" yogstation.dme
|
|
|
|
:end
|
|
pause
|