Can I read a file when conditions on it? I want it to read the file and return the data if the Case statement is true. It works if it is in the main kix file but the list is getting rather large and I was hoping to separate the code from the list.

Such as (code is best guess)

 Code:
TESTSCRIPT.KIX
$LICENSEDUSER = ReadProfileString('C:\NETWORK\SOFTWARE.INI', 'DS_CATIA_V5_19', $LICENSEVALID)

SOFTWARE.INI File
[DS_CATIA_V5_19]
Select
   Case $USERNAME = "AGarcia" And $SERIALNO = "1234567"		$DRIVE = "D:"	$LICENSEVALID = "YES"
EndSelect