You can put the license, startup, and other information in the c:\Program Files\PTC\Creo 4.1\View\preferences\ProductView\admin_prefs.xml file. You can copy the license information from your personal user_prefs.xml file to get the formatting. Other settings, like lock settings, need to be added manually. The modification of the admin_prefs.xml file used to be documented in either the install or admin/users guide. Once you have a working admin_prefs.xml file, you can insert it into the installation as part of the installation script.
The following example shows a simple admin_prefs.xml file that will lock the installation down to the "lite" installation, prevent the user from activating the startup prompts, and define the license server.
<?xml version="1.0" encoding="utf-8"?>
<preferences>
<category name="General">
<category name="Startup">
<preference name="startup_prompt" value="false" locked="true"/>
<preference name="startup_mode" value="pvlite" locked="true"/>
</category>
<category name="Licensing">
<preference name="license_server" value="port@server"/>
</category>
</category>
</preferences>