Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion RA-INSTALLPREP.bat
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ ECHO 5.Reckon Accounts 2017
ECHO 6.Reckon Accounts 2018
ECHO 7.Reckon Accounts 2019
ECHO 8.Reckon Accounts 2020
ECHO 9.Reckon Accounts 2021
ECHO.

CHOICE /C 12345678 /M "Select a Version:"
CHOICE /C 123456789 /M "Select a Version:"

IF ERRORLEVEL 9 GOTO 2021
IF ERRORLEVEL 8 GOTO 2020
IF ERRORLEVEL 7 GOTO 2019
IF ERRORLEVEL 6 GOTO 2018
Expand Down Expand Up @@ -109,6 +111,13 @@ set FOLDER=Reckon Accounts 2020
set DATAUSER=QBDataServiceUser29
goto CheckOS

:2021
set YEAR=2021
set PORT=10184
set FOLDER=Reckon Accounts 2021
set DATAUSER=QBDataServiceUser30
goto CheckOS

:CheckOS
IF EXIST "%PROGRAMFILES(X86)%" ( GOTO 64Bit ) ELSE ( GOTO 32Bit )

Expand Down