Yes, FileLocator Pro is available as an MSI installation file, available from the FileLocator Pro download page. When deploying FileLocator Pro in an Enterprise environment there are two methods to distribute the registration information during the install:
1. Using the REG_DETAILS property
The REG_DETAILS property is an '=' separated list of registration information in the format:
name=email=regcode
eg.
msiexec /i "E:\filelocator_x64_2946.msi" REG_DETAILS="Abc Widgets Corp=admin@abcwidgets.com=a368de61..."
You can also use the LANG_FILE property to specify the language file to use, e.g.
LANG_FILE="lang-de.xml"
2. Using a flpro_reg.xml file
If you add a file called flpro_reg.xml
in the source folder (ie same folder as MSI) the installer will read that and apply it to the install. The format for the flpro_reg.xml is:
<reg>
<name></name>
<email></email>
<regcode></regcode>
</reg>
And so using the information from your registration email should look something like:
<reg>
<name>Abc Widgets Corp</name>
<email>admin@abcwidgets.com</email>
<regcode>a368de61...</regcode>
</reg>