Difference between revisions of "Autodesk Maya 2011"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (add external link and and description)
m
 
Line 1: Line 1:
Maya is a commercial 3D animation software. more infos from [http://usa.autodesk.com/maya/ here]
+
Maya is a commercial 3D animation software. More infos from [http://usa.autodesk.com/maya/ here].
  
 
This installs Maya with single server network licensing. Make sure the source directory also contains the other files from the same directory on the installation media (i.e. not just the two .msi files referenced in the package).
 
This installs Maya with single server network licensing. Make sure the source directory also contains the other files from the same directory on the installation media (i.e. not just the two .msi files referenced in the package).

Latest revision as of 17:03, 31 March 2011

Maya is a commercial 3D animation software. More infos from here.

This installs Maya with single server network licensing. Make sure the source directory also contains the other files from the same directory on the installation media (i.e. not just the two .msi files referenced in the package).

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE packages [
 <!ENTITY serialpfx "nnn">
 <!ENTITY serial "nnnnnnnn">
 <!ENTITY key "XXXXX">
 <!ENTITY server "hostname">
 <!ENTITY srcdir "%SOFTWARE%\...\x64\Maya">
]>

<packages>
<package
 id="maya2011-x64"
 name="Autodesk Maya 2011 (x64)"
 revision="1"
 reboot="false"
 priority="100">
 
 <check type="file" condition="versiongreaterorequal" path="%ProgramFiles%\Autodesk\Maya2011\bin\maya.exe" value="2010.3.19.311" />
 
 <install cmd='msiexec /quiet /qn /L* %TEMP%\wpkg_i_maya2011.log /i &srcdir;\Maya2011.msi ACADSERIALPREFIX=&serialpfx; ACADSERIALNUMBER=&serial; ADLM_PRODKEY=&key; ACADLICENSETYPE="Network License" ACADSTANDALONENETWORKTYPE=3 ACADLICENSESERVERTYPE="Single Server License" ADLM_LICENSE_TYPE=3 ACADSERVERPATH="&server; 0" ADLMSERVERNAME=&server;' />
 <install cmd="msiexec /quiet /qn /L* %TEMP%\wpkg_i_maya2011doc.log /i &srcdir;\Maya_Docs_en_US2011.msi" />

 <upgrade cmd='msiexec /quiet /qn /L* %TEMP%\wpkg_i_maya2011.log /i &srcdir;\Maya2011.msi ACADSERIALPREFIX=&serialpfx; ACADSERIALNUMBER=&serial; ADLM_PRODKEY=&key; ACADLICENSETYPE="Network License" ACADSTANDALONENETWORKTYPE=3 ACADLICENSESERVERTYPE="Single Server License" ADLM_LICENSE_TYPE=3 ACADSERVERPATH="&server; 0" ADLMSERVERNAME=&server;' />
 <upgrade cmd="msiexec /quiet /qn /L* %TEMP%\wpkg_u_maya2011doc.log /i &srcdir;\Maya_Docs_en_US2011.msi" />

 <remove cmd="msiexec /quiet /qn /L* %TEMP%\wpkg_r_maya2011.log /X{887CB4A1-5DB4-4924-A2C6-CDCB72376CC7}" />
 <remove cmd="msiexec /quiet /qn /L* %TEMP%\wpkg_r_maya2011.log /X{47374ACF-9023-40e7-9830-ECED0DCBC3DC}" />
</package>

</packages>