Can''t open "login" area in properties

I created an install script (below) that installs spark_2.0.5_online.exe. After using that script, I’‘ve found that the login area in preferences no longer opens. I can use all other (I guess they are tabs?) in preferences, but clicking on the “login” area doesn’‘t switch to that area. I set the “autologin” and “hide” feature in the script, so I guess it’‘s not really a problem right now, but it’‘d be nice to be able to get in that area once in a while. I’'m not sure if the script is the problem or not, but noticed the issue after using this script for a few installs.

P.S. Thanks to the others here on helping me with this script. It made setting up Spark on my stations so much easier.

@echo off

SET SPARKPREFS="%USERPROFILE%\Spark\spark.properties"

SET SPARKVER=“
server\install\jabber\client\spark_2_0_5_online.exe”

:INSTALL

ECHO.

ECHO Installing Spark Instant Messaging client - Please wait!

%SPARKVER% -q

ECHO.

ECHO Done!

IF EXIST “%USERPROFILE%\Spark\spark.properties” GOTO END

:PROFILE

ECHO.

ECHO Setting up new Spark user profile - Please wait!

IF NOT EXIST “%USERPROFILE%\Spark” GOTO MD

IF EXIST “%USERPROFILE%\Spark” GOTO SETSPARK

:MD

MKDIR “%USERPROFILE%\Spark”

GOTO SETSPARK

:SETSPARK

ECHO #Spark Settings >> %SPARKPREFS%

ECHO #%DATE% %TIME% >> %SPARKPREFS%

ECHO server=tedford.net >> %SPARKPREFS%

ECHO windowTakesFocus=true >> %SPARKPREFS%

ECHO spellCheckerEnabled=true >> %SPARKPREFS%

ECHO passwordSaved=true >> %SPARKPREFS%

ECHO username=%USERNAME% >> %SPARKPREFS%

ECHO showHistory=true >> %SPARKPREFS%

ECHO lastUpdateCheck= >> %SPARKPREFS%

ECHO defaultChatLengthTimeout=300 >> %SPARKPREFS%

ECHO autoLoginEnabled=true >> %SPARKPREFS%

ECHO chatNotificationOn=true >> %SPARKPREFS%

ECHO timeDisplayed=true >> %SPARKPREFS%

ECHO password=== >> %SPARKPREFS%

ECHO showEmptyGroups=true >> %SPARKPREFS%

ECHO toasterPopup=true >> %SPARKPREFS%

ECHO startHidden=true >> %SPARKPREFS%

ECHO startOnStartup=true >> %SPARKPREFS%

ECHO idleTime=3 >> %SPARKPREFS%

ECHO idleOn=true >> %SPARKPREFS%

:END