Difference between revisions of "Pro/ENGINEER"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(New page: NOTE THIS PAGE IS INCOMPLETE Performing a silent installation of PTC's Pro/ENGINEER software [http://www.ptc.com/products/proengineer/] is time-consuming task. One way to do this is belo...)
 
Line 1: Line 1:
NOTE THIS PAGE IS INCOMPLETE
+
'''NOTE THIS PAGE IS INCOMPLETE'''
  
Performing a silent installation of PTC's Pro/ENGINEER software [http://www.ptc.com/products/proengineer/] is time-consuming task.  One way to do this is below, and it is general enough to work for any version and release code of Pro/ENGINEER.
+
Performing a silent installation of PTC's Pro/ENGINEER[http://www.ptc.com/products/proengineer/] software is time-consuming task.  One way to do this is below, and the methods used are general enough to work for any version and release code of Pro/ENGINEER.
  
 
The basic steps are:
 
The basic steps are:
  
1. Create a network installation of the PTC installation media.  To do this, use the  
+
1. Create a customer installer of the PTC installation media.  To do this, use click on Other Products in the PTC.Setup program and choose Custom Installer.  Select the components you want to install output the results to an appropriate directory within your WPKG software folder.
2. Create a trial for the installation processThis trail file will provide the parameters for the installation process.
+
2. From a command prompt, run "setup.exe -uilog" in the directory you created in Step 1 above. Input all the configuration parameters that you want to use on your silent installation.  The setup program will write a trail file (named ps_trl.txt.1) that contains these parameters.
3. Create batch files for the installation and removal of Pro/ENGINEER.
+
3. Copy the trail file to your WPKG software area.  You will need it during installations.
 +
3. Create batch files for the installation and removal of Pro/ENGINEER.  The installation files should copy installer data (including the trail file) to the local drive, run the installer as "setup.exe -nographics -uitrail setup.txt", wait a fixed period of time for the installer to complete, and then exit.
 
4. Define the WPKG package, which will run the aforementioned batch files.
 
4. Define the WPKG package, which will run the aforementioned batch files.
 
  
  

Revision as of 20:18, 2 December 2008

NOTE THIS PAGE IS INCOMPLETE

Performing a silent installation of PTC's Pro/ENGINEER[1] software is time-consuming task. One way to do this is below, and the methods used are general enough to work for any version and release code of Pro/ENGINEER.

The basic steps are:

1. Create a customer installer of the PTC installation media. To do this, use click on Other Products in the PTC.Setup program and choose Custom Installer. Select the components you want to install output the results to an appropriate directory within your WPKG software folder. 2. From a command prompt, run "setup.exe -uilog" in the directory you created in Step 1 above. Input all the configuration parameters that you want to use on your silent installation. The setup program will write a trail file (named ps_trl.txt.1) that contains these parameters. 3. Copy the trail file to your WPKG software area. You will need it during installations. 3. Create batch files for the installation and removal of Pro/ENGINEER. The installation files should copy installer data (including the trail file) to the local drive, run the installer as "setup.exe -nographics -uitrail setup.txt", wait a fixed period of time for the installer to complete, and then exit. 4. Define the WPKG package, which will run the aforementioned batch files.


WPKG Package:

<package
     id="proewf2-install"
     name="Pro/ENGINEER Wildfire 2.0"
     revision="280"
     reboot="false"
     priority="100">
	 
	<check type="uninstall" condition="exists" path="Pro/ENGINEER Release Wildfire 2.0 Datecode M280" />

	<install cmd='"%SOFTWARE%\PTC\ProENGINEER\install-silent.bat" 2 M280 4GB' />
		
	<upgrade cmd='"%SOFTWARE%\PTC\ProENGINEER\install-silent.bat" 2 M280 4GB' />

	<remove  cmd='"%SOFTWARE%\PTC\ProENGINEER\remove-silent.bat" 2' />

</package>