strInstance is used before it is initialized in FineBuild2InstallSQL.vbs
description
strInstance is set on line 207 in FineBuild2InstallSQL.vbs but it is used on line 201 of FineBuild2InstallSQL.vbs.
Here's the snippet:
line 201: strFSShareName = GetParam(Null, "FileStreamShareName", "FS" & strInstance)
line 207: strInstance = GetBuildfileValue("Instance")
This works fine when you create a single instance because the FilestreamShareName is set to "FS" but if you try to create a second instance you get an install error saying that the share "FS" has already been created.