Difference between revisions of "FileMaker Pro 10"
From WPKG | Open Source Software Deployment and Distribution
(FileMaker 10 Pro for Windows silent deploy install) |
m |
||
Line 5: | Line 5: | ||
This is the structure of the Assisted Install.txt | This is the structure of the Assisted Install.txt | ||
− | + | <source lang="ini"> | |
[Assisted Install] | [Assisted Install] | ||
AI_USERNAME= Your Company name | AI_USERNAME= Your Company name | ||
Line 17: | Line 17: | ||
AI_SKIPDIALOG= 1 | AI_SKIPDIALOG= 1 | ||
AI_DISABLEUPDATENOTIFY= 1 | AI_DISABLEUPDATENOTIFY= 1 | ||
+ | </source> | ||
Here is my FileMaker Pro 10 package | Here is my FileMaker Pro 10 package | ||
− | + | <source lang="xml"> | |
+ | <package | ||
id="FMPro10" | id="FMPro10" | ||
name="FileMaker Pro 10" | name="FileMaker Pro 10" | ||
Line 32: | Line 34: | ||
</install> | </install> | ||
<remove cmd='MsiExec.exe /X{96F5D143-C950-465D-A8BE-C3D4D9CB3C1F} /qn ' /> | <remove cmd='MsiExec.exe /X{96F5D143-C950-465D-A8BE-C3D4D9CB3C1F} /qn ' /> | ||
− | + | </package> | |
+ | </source> | ||
+ | |||
+ | [[Category:Silent Installers]] |
Revision as of 18:34, 23 January 2009
I constructed this package using the FileMaker Pro 10 Network Install Setup Guide.pdf which outlines how to configure an Assisted Install.txt with a volume license key.
During a normal interactive installation FileMaker 10 installs Bonjour for Windows but if you want to deploy FileMaker silently then you will have to deploy Bonjour yourself first. You will see I have added it as a <depends>. The version of Bonjour for Windows that FileMaker requires >= 1.0.5, there is a newer 1.0.6 which was released by Apple in December 2008.
This is the structure of the Assisted Install.txt
[Assisted Install]
AI_USERNAME= Your Company name
AI_ORGANIZATION= Name Volume License Registered To Exactly as typed
AI_LICENSEKEY= XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
AI_LANGUAGE= English
AI_APPLICATIONUSERS= AllUsers
AI_NONEWDATABASES= 0
AI_SHORTCUTS= 1
AI_REGISTRATION= 0
AI_SKIPDIALOG= 1
AI_DISABLEUPDATENOTIFY= 1
Here is my FileMaker Pro 10 package
<package
id="FMPro10"
name="FileMaker Pro 10"
revision="1"
reboot="false"
priority="14">
<depends package-id="bonjour"/>
<check type="uninstall" condition="exists" path="FileMaker Pro 10" />
<install cmd='%SOFTWARE%\FMPro10\setup.exe /s /v/qn' >
<exit code='1' />
</install>
<remove cmd='MsiExec.exe /X{96F5D143-C950-465D-A8BE-C3D4D9CB3C1F} /qn ' />
</package>