Difference between revisions of "DirectX"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
Line 4: Line 4:
 
  <package id="directx"
 
  <package id="directx"
 
           name="Direct X 9 for Windows 2000"
 
           name="Direct X 9 for Windows 2000"
           execute="once">
+
           execute="once"
 +
          priority="100">
 
  <!-- DirectX 9.0c Redistributable for Software Developers - Multilingual -->
 
  <!-- DirectX 9.0c Redistributable for Software Developers - Multilingual -->
 
  <!-- can't test for this? -->
 
  <!-- can't test for this? -->

Revision as of 13:30, 14 September 2007

This is a silent installer for DirectX 9 for Windows 2000.

 <package id="directx"
          name="Direct X 9 for Windows 2000"
          execute="once"
          priority="100">
 <!-- DirectX 9.0c Redistributable for Software Developers - Multilingual -->
 <!-- can't test for this? -->

 <install cmd='cmd /c rmdir /s /q "%TEMP%\dx9c"' />
 <install cmd='%SOFTWARE%\directx9\directx_9c_redist.exe /q /c /t:"%TEMP%\dx9c"' >
 <exit code="194" reboot="true" />
 <exit code="1603" />
 <exit code="3010" reboot="true" />
 </install>
 <install cmd='"%TEMP%\dx9c\dxsetup.exe" /silent'>
 <exit code="1" reboot="true" />
 <exit code="-18" reboot="true" />
 </install>
 <install cmd='cmd /c rmdir /s /q "%TEMP%\dx9c"' />
 </package>