Difference between revisions of "VMware Player"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
 
Line 9: Line 9:
 
</package>
 
</package>
 
</source>
 
</source>
 +
 +
For version 3.1.1, extract the MSI installer using the same process above. The package file below is updated for the v3.1.1 product code.
 +
 +
<source lang="xml">
 +
<package id="VMwarePlayer" name="VMwarePlayer 3.1.1" revision="1" reboot="true" priority="10">
 +
        <check type="uninstall" condition="exists" path="VMware Player" />
 +
        <install cmd='msiexec /q /i "%SOFTWARE%\vmplayer-v3.1.1\VMware Player.msi"'/>
 +
        <remove cmd='msiexec.exe /q /x{A53A11EA-0095-493F-86FA-A15E8A86A405}' />
 +
        <upgrade cmd='msiexec /q /i "%SOFTWARE%\vmplayer-v3.1.1\VMware Player.msi"'/>
 +
</package>
 +
</source>
 +
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Latest revision as of 13:04, 6 September 2010

This is a silent installer for VMware Player. You can get it from VMware Homepage. Run it like "vmware-player.exe /e <Foldername>" to get the exploded folder containing the msi file.

<package id="VMwarePlayer" name="VMwarePlayer 2.0" revision="1" reboot="true" priority="10">
        <check type="uninstall" condition="exists" path="VMware Player" />
        <install cmd='msiexec /q /i "%SOFTWARE%\VMwarePlayer\VMware Player.msi"'/>
        <remove cmd='MsiExec.exe /q /x{AC76BA86-7AD7-1031-7B44-A80000000002}' />
        <upgrade cmd='msiexec /q /i "%SOFTWARE%\VMwarePlayer\VMware Player.msi"'/>	
</package>

For version 3.1.1, extract the MSI installer using the same process above. The package file below is updated for the v3.1.1 product code.

<package id="VMwarePlayer" name="VMwarePlayer 3.1.1" revision="1" reboot="true" priority="10">
        <check type="uninstall" condition="exists" path="VMware Player" />
        <install cmd='msiexec /q /i "%SOFTWARE%\vmplayer-v3.1.1\VMware Player.msi"'/>
        <remove cmd='msiexec.exe /q /x{A53A11EA-0095-493F-86FA-A15E8A86A405}' />
        <upgrade cmd='msiexec /q /i "%SOFTWARE%\vmplayer-v3.1.1\VMware Player.msi"'/>	
</package>