Inital Commit

This commit is contained in:
2023-03-16 23:54:00 +01:00
commit 13ee0ecb2e
11 changed files with 227 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
@ECHO OFF
TITLE Loading windows setup
REM load needed var(s)
set /p SelectedRelease=<%TEMP%\SelectedRelease.var
set SetupFound=FALSE
REM go to setUp location
I:
cd \%SelectedRelease%
REM Check if setup exists
IF exist setup.exe (
set SetupFound=TRUE
REM load setUp
start /wait setup.exe
)
echo | set /p=%SetupFound%>%TEMP%\SetupFound.var
REM exit