Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
I have created a document and program to do a silent install of Creo2. The program installs Creo2 on the users PC and sets the license and registers the windchill server. The program is based on PIM install guide page 140.
x:\Setups\Creo2_install\setup.exe -xml "x:\setups\Creo2_install\creobase.p.xml" -xml "x:\setups\Creo2_install\pma.p.xml"
Contact me if you are interested.
What method did you use to register the server? Does it cause any problems if the user is not a registered Windchill user at the time?
James.
You can register the server when you start creo2 or automate the process
Below is the .srv_mgr_db.fldx that gest copied to the below directory. You will need to modify the file for your site.
make dir and copy .srv_mgr_db.fldx and active_server_config.fld for registering the server md "C:\Users\%username%.FEG\AppData\Roaming\PTC\Creo\Platform\ServerMgr"
copy /Y "x:\setups\creo2_install\.srv_mgr_db.fldx" "C:\Users\%username%\AppData\Roaming\PTC\Creo\Platform\ServerMgr"
.srv_mgr_db.fldx file
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cip="http://www.ptc.com/encodings/2003/cip/" xmlns:lisrvmgrdb="http://www.ptc.com/infoengine/soap/rpc/message/">
<SOAP-ENV:Body>
<LiSrvMgrDBImpl-ServerInfoSeq xsi:type="LiSrvMgrDBImpl-ServerInfoSeq" SOAP-ENC:arrayType="xsd:anyType[1]">
<item xsi:type="LiSrvMgrDBImpl-ServerInfo">
<name>Warewash</name>
<location>http://ilink-server-name.companyname.biz/Windchill</location>
<workspace>Workspace on ????????</workspace> <context>Warewash</context> <context_type>3</context_type> <pro_type>6</pro_type> <string_type/> <is_online>1</is_online> <ws_aval_offline>0</ws_aval_offline>
<ws_locked>0</ws_locked>
<server_version>7</server_version>
<has_license>1</has_license>
<is_available>1</is_available>
<auxiliary_server>0</auxiliary_server>
</item>
</LiSrvMgrDBImpl-ServerInfoSeq>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>