Wine-devel
Threads by month
- ----- 2026 -----
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
March 2009
- 135 participants
- 299 discussions
Andreas Rosenberg wrote:
>
> ------------------------------------------------------------------------
>
>
It's quite common for these functions to check for the needed buffersize when
buffer=NULL and size=0 is passed.
I did a quick check on W2K3 and this is what is returned:
sizePath = 0;
SetLastError( 0xDEADBEEF );
r = GetUserProfileDirectoryA( htoken , NULL, &sizePath );
userenv.c:298: (A) r : 0, sizePath : 0, GLE : 87/00000057
sizePath = 0;
SetLastError( 0xDEADBEEF );
r = GetUserProfileDirectoryW( htoken , NULL, &sizePath );
userenv.c:304: (W) r : 0, sizePath : 40, GLE : 122/0000007a
So one suggestion is to also add some A-checks to the tests. Another one is not
to rely on buffer[MAX_PATH] but use the returned required buffersize for further
processing (HeapAlloc).
--
Cheers,
Paul.
1
0
06 Mar '09
Andreas Rosenberg wrote:
+ if ( !lpcchSize ) {
+ SetLastError(ERROR_INVALID_PARAMETER);
+ return FALSE;
+ SetLastError(ERROR_MORE_DATA);
+ }
+ }
+ }
+ else
+ SetLastError(ERROR_REGISTRY_CORRUPT);
+ }
+ else
+ SetLastError(ERROR_REGISTRY_CORRUPT);
return FALSE;
All these SetLastError are still potentially wrong since you don't check
this error codes in your tests.
4
8
Re: [2/6] dbghelp: Don't define 32-bit module handling functions in Win64.
by Alexandre Julliard 06 Mar '09
by Alexandre Julliard 06 Mar '09
06 Mar '09
Mike Ruprecht <cmaiku(a)gmail.com> writes:
> diff --git a/dlls/dbghelp/module.c b/dlls/dbghelp/module.c
> index fcdea2e..4b6c3d6 100644
> --- a/dlls/dbghelp/module.c
> +++ b/dlls/dbghelp/module.c
> @@ -438,6 +438,7 @@ enum module_type module_get_type_by_name(const WCHAR* name)
> return DMT_PE;
> }
>
> +#if defined(_IMAGEHLP_SOURCE_) || !defined(_IMAGEHLP64)
It doesn't make sense to test for these defines in the source. You
probably want #ifndef _WIN64.
--
Alexandre Julliard
julliard(a)winehq.org
1
0
Re: [4/6] wined3d: Simplify IWineD3DVertexBufferImpl_PreLoad() a bit.
by Alexandre Julliard 06 Mar '09
by Alexandre Julliard 06 Mar '09
06 Mar '09
Henri Verbeet <hverbeet(a)codeweavers.com> writes:
>>From c0f791e008fba3b7576d7e444801a7d45c72ff6a Mon Sep 17 00:00:00 2001
> From: Henri Verbeet <hverbeet(a)codeweavers.com>
> Date: Fri, 6 Mar 2009 08:43:49 +0100
> Subject: wined3d: Simplify IWineD3DVertexBufferImpl_PreLoad() a bit.
It doesn't work here:
../../../tools/runtest -q -P wine -M d3d9.dll -T ../../.. -p d3d9_test.exe.so visual.c && touch visual.ok
visual.c:8782: Tests skipped: D3DFMT_G16R16F textures not supported
visual.c:8782: Tests skipped: D3DFMT_G32R32F textures not supported
visual.c:7572: Tests skipped: Card has unconditional pow2 support, skipping conditional NP2 tests
visual.c:7526: Test failed: Input 0x00003c00, 0x00000000 returned color 00102030, expected 0x00ff0000
visual.c:7529: Test failed: Input 0x00000000, 0x3c000000 returned color 00102030, expected 0x00000000
visual.c:7532: Test failed: Input 0x3c000000, 0x00000000 returned color 00102030, expected 0x0000ff00
visual.c:7535: Test failed: Input 0x00000000, 0x00003c00 returned color 00102030, expected 0x000000ff
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 0)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 0)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 0)
visual.c:9248: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 0)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 1)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 1)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 1)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 2)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 2)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 3)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 4)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 5)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 5)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 5)
visual.c:9248: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 5)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 6)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 6)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 6)
visual.c:9248: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 6)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 7)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 7)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 7)
visual.c:9248: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 7)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 8)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 8)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 8)
visual.c:9248: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 8)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 9)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 9)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 9)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 10)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 10)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 10)
visual.c:9248: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 10)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 11)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 11)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 11)
visual.c:9248: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 11)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 12)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 13)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 13)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 13)
visual.c:9248: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 13)
visual.c:9242: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 14)
visual.c:9244: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 14)
visual.c:9246: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 14)
visual.c:9248: Test failed: has color 0x00ffffff, expected 0x00ff0000 (case 14)
visual.c:8643: Tests skipped: Only 1 simultaneous render target supported, skipping MRT test
make[2]: *** [visual.ok] Error 51
--
Alexandre Julliard
julliard(a)winehq.org
1
0
Re: [sane.ds 2/4] Fix a subtle bug that prevented the float scrollbar from incrementing by one.
by Francois Gouget 06 Mar '09
by Francois Gouget 06 Mar '09
06 Mar '09
On Thu, 5 Mar 2009, Jeremy White wrote:
[...]
> + /* Note that conversion of float -> SANE_Fixed is lossy;
> + * and when you truncate it into an integer, you can get
> + * unfortunate results. This calculation attempts
> + * to mitigate that harm */
> if (s_quant)
> - pos = (dd / s_quant);
> + pos = ((dd + (s_quant/2.0)) / s_quant);
> else
> - pos = dd / 0.01;
> + pos = (dd + 0.005) / 0.01;
pos is an integer. So why not simply round to the nearest instead of
rounding down (which is the default for double -> int conversions)?
if (s_quant)
pos = lround(dd / s_quant);
else
pos = lround(dd / 0.01);
--
Francois Gouget <fgouget(a)free.fr> http://fgouget.free.fr/
Hiroshima '45 - Czernobyl '86 - Windows '95
1
0
Re: [sane.ds 4/4] Move the README to the right place and update it; remove the TWAIN file as it is just an obsolete fragment of the readily available TWAIN specification file.
by Alexandre Julliard 06 Mar '09
by Alexandre Julliard 06 Mar '09
06 Mar '09
Jeremy White <jwhite(a)codeweavers.com> writes:
> diff --git a/dlls/sane.ds/README b/dlls/sane.ds/README
> new file mode 100644
> index 0000000..ce030a7
> --- /dev/null
> +++ b/dlls/sane.ds/README
> @@ -0,0 +1,64 @@
> +Status/TODO as of March 5, 2009.
> +Jeremy White, jwhite(a)codeweavers.com.
> +
> +
> +What works:
Please put that sort of information as comments in the relevant source
files. It's never updated if it's a separate README.
--
Alexandre Julliard
julliard(a)winehq.org
1
0
Re: [sane.ds 3/4] Add support for ICAP_SUPPORTEDSIZES, enabling rational sizing for scans.
by Alexandre Julliard 06 Mar '09
by Alexandre Julliard 06 Mar '09
06 Mar '09
Jeremy White <jwhite(a)codeweavers.com> writes:
> + rc = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_IPAPERSIZE, paper, sizeof(paper));
> + if (rc > 0)
> + switch (atoi(paper))
You should use LOCALE_RETURN_NUMBER.
--
Alexandre Julliard
julliard(a)winehq.org
1
0
06 Mar '09
Dear Dan, Juan, Austin et al
I still hope that one of you guys could take care of including this in
the mainline wine - i sent a patch to wine-patches which still applies
fine to the latest git tree.
Any help for including the bugfix is much appreciatet. The code is
totally copyright free. Please help getting this bug fixed. Just submit
the code as your own or vote for the inclusion of my patch or improove
it and resubmit, ... any help is appreciated!
Greets
Patrick
@dan
On Mon, 2009-03-02 at 18:38 +0100, Dan Kegel wrote:
> Oh, but I meant to say, you should write your own test
> to verify the bug you're trying to fix, and make sure
> your test passes on windows. See
> http://www.winehq.org/docs/winedev-guide/testing
> Then submit the test along with your bugfix.
> That way your bug will stay fixed, because everyone
> will run your test (along with all the others) before they
> submit changes to wine.
It might be difficult to write a test since the test would actually pass
already as long as you don't shutdown and restart wineserver, which is
not done during the tests I guess...
>From 554fc44b2c94acda06521cb5be5b3143054eebf7 Mon Sep 17 00:00:00 2001
From: Patrick <ragamuffin(a)datacomm.ch>
Date: Mon, 2 Mar 2009 10:12:26 +0100
Subject: save/load registry key class names
---
server/registry.c | 41 +++++++++++++++++++++++++++++++++++++----
1 files changed, 37 insertions(+), 4 deletions(-)
diff --git a/server/registry.c b/server/registry.c
index d83486b..afe7771 100644
--- a/server/registry.c
+++ b/server/registry.c
@@ -246,6 +246,10 @@ static void save_subkeys( const struct key *key, const struct key *base, FILE *f
{
fprintf( f, "\n[" );
if (key != base) dump_path( key, base, f );
+ if (key->class != NULL) {
+ fprintf( f, "] [" );
+ dump_strW( key->class, key->classlen / sizeof(WCHAR), f, "[]" );
+ }
fprintf( f, "] %u\n", (unsigned int)((key->modif - ticks_1601_to_1970) / TICKS_PER_SEC) );
for (i = 0; i <= key->last_value; i++) dump_value( &key->values[i], f );
}
@@ -1107,12 +1111,12 @@ static int get_data_type( const char *buffer, int *type, int *parse_type )
static struct key *load_key( struct key *base, const char *buffer, int flags,
int prefix_len, struct file_load_info *info )
{
- WCHAR *p;
- struct unicode_str name;
- int res;
+ WCHAR *p, *c;
+ struct unicode_str name, class;
+ int res, c_res;
unsigned int mod;
timeout_t modif = current_time;
- data_size_t len;
+ data_size_t len, c_len;
if (!get_file_tmp_space( info, strlen(buffer) * sizeof(WCHAR) )) return NULL;
@@ -1122,6 +1126,32 @@ static struct key *load_key( struct key *base, const char *buffer, int flags,
file_read_error( "Malformed key", info );
return NULL;
}
+
+ c_len = info->tmplen - len;
+ if ((c_res = parse_strW( info->tmp + len / sizeof(WCHAR), &c_len, buffer + res, ']' )) == -1)
+ {
+ /* no class name */
+ class.len = 0;
+ }
+ else
+ {
+ res += c_res;
+
+ c = info->tmp + len / sizeof(WCHAR);
+ while (*c) { if (*c++ == '[') break; }
+
+ if (!*c)
+ {
+ /* malformed class name - ignore */
+ class.len = 0;
+ }
+ else
+ {
+ class.str = c;
+ class.len = c_len - (c - (info->tmp + len / sizeof(WCHAR)) + 1) * sizeof(WCHAR);
+ }
+ }
+
if (sscanf( buffer + res, " %u", &mod ) == 1)
modif = (timeout_t)mod * TICKS_PER_SEC + ticks_1601_to_1970;
@@ -1140,6 +1170,9 @@ static struct key *load_key( struct key *base, const char *buffer, int flags,
}
name.str = p;
name.len = len - (p - info->tmp + 1) * sizeof(WCHAR);
+
+ if (class.len > 0)
+ return create_key( base, &name, &class, flags, modif, &res );
return create_key( base, &name, NULL, flags, modif, &res );
}
--
1.6.1.3
1
0
hello I just installed wine and used winetricks to get IE
actualy I want to play combat arms and read that I should use ie6 to
download and install it.
I m using gentoo with and amd64 and wine 1.1.15.
there were some broken links in drive_c/windows which I fixed by linking
/usr/lib/wine to /usr/lib/wine32
problem: internetexplorer has no controls and links go black on hover on
the wineHQ startpage. ctrl-L for location doesnt work also.
I set windows version to winxp
I installed allfonts and comctl32 but no change
problem2: installing directx9 via winetricks fails.
the files are extracted but there is an error installing.
.wine/drive_c/windows/Logs/DXError.log contains:
--------------------
[03/03/09 14:21:47] module: dsetup32(Oct 27 2008), file: setup.cpp,
line: 5338, function: CSetup::DoCopy
Failed API: SetupIterateCabinet()
Error: (3) - Path not found
Unable to iterate through C:\WINE~HPG\DXNT.cab. The file may be damaged.
--------------------
[03/03/09 14:23:07] module: dsetup32(Oct 27 2008), file: setup.cpp,
line: 5338, function: CSetup::DoCopy
Failed API: SetupIterateCabinet()
Error: (3) - Path not found
Unable to iterate through C:\WINE~HPG\DXNT.cab. The file may be damaged.
--------------------
[03/03/09 14:28:14] module: dsetup32(Oct 27 2008), file: setup.cpp,
line: 5338, function: CSetup::DoCopy
Failed API: SetupIterateCabinet()
Error: (3) - Path not found
Unable to iterate through C:\WINE~HPG\DXNT.cab. The file may be damaged.
.wine/drive_c/windows/Logs/DirectX.log
03/03/09 14:21:29: DXSetup: No command line switch
03/03/09 14:21:29: DXSetup: StartWizard()
03/03/09 14:21:30: dsetup32: IsWow64(): Windows 2000 or Windows 9x.
03/03/09 14:21:33: DXSetup: CDXWSetup()
03/03/09 14:21:43: DXSetup: start installation
03/03/09 14:21:43: DSETUP: DirectXSetupA(): hWnd: 00030028 dwFlags: 02010098
03/03/09 14:21:43: dsetup32: === SetupForDirectX() start ===
03/03/09 14:21:43: dsetup32: Oct 27 2008 09:42:44
03/03/09 14:21:43: dsetup32: DXSetupCommand = 0.
03/03/09 14:21:43: DXSetup: DSetupCallback(): Phase = 0, Steps = 0
03/03/09 14:21:43: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:21:43: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:21:43: dsetup32: Installing on Win2K
03/03/09 14:21:43: dsetup32: IsWow64(): Windows 2000 or Windows 9x.
03/03/09 14:21:43: dsetup32: BuildPaths(): temp directory
c:\windows\system\DirectX is created.
03/03/09 14:21:43: dsetup32: Unable to find mscoree.dll.
03/03/09 14:21:43: dsetup32: CheckForManagedDX(): .NETFramework is not
available, Managed DirectX is not installed.
03/03/09 14:21:43: dsetup32: Checking the version:
HKLM\software\microsoft\directx\Version
03/03/09 14:21:43: dsetup32: Version in registry = 4.09.00.0904
03/03/09 14:21:43: dsetup32: Version in DLL = 4.09.00.0904
03/03/09 14:21:43: dsetup32: DXCheckTrust(): C:\WINE~HPG\dxupdate.cab is
trusted.
03/03/09 14:21:43: dsetup32: GetCDXUpdate(): Extracting dxupdate.dll
from C:\WINE~HPG\dxupdate.cab.
03/03/09 14:21:43: dsetup32: Extracted file dxupdate.dll from cab
03/03/09 14:21:43: dsetup32: Extracted file dxupdate.inf from cab
03/03/09 14:21:43: dsetup32: Extracted file dxupdate.cif from cab
03/03/09 14:21:43: dsetup32: GetCDXUpdate(): Loading dxupdate.dll in
c:\windows\system\DirectX\DX6dec.tmp\.
03/03/09 14:21:43: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:21:43: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
dxdllreg_x86.cab...
03/03/09 14:21:43: dxupdate: DXCheckTrust():
C:\WINE~HPG\dxdllreg_x86.cab is trusted.
03/03/09 14:21:43: dxupdate: Extracted file dxdllreg_x86.inf from cab
03/03/09 14:21:43: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:43: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:43: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_1_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_1_x64.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_2_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_2_x64.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2902.0_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2903.0_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2904.0_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2905.0_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2906.0_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2907.0_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2908.0_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2909.0_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2910.0_x86.cab does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2005_d3dx9_24_x86.cab...
03/03/09 14:21:43: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2005_d3dx9_24_x86.cab is trusted.
03/03/09 14:21:43: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:43: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:43: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K_Feb2005_d3dx9_24_x86.cab] is being
installed.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2005_d3dx9_24_x64.cab] is skipped on this platform.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Feb2005_MDX_x86.MSI does not exist.
03/03/09 14:21:43: dxupdate: -----
03/03/09 14:21:43: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2005_d3dx9_25_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2005_d3dx9_25_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file apr2005_d3dx9_25_x86.inf
from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2005_d3dx9_25_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Apr2005_MDX_x86.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2005_d3dx9_26_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2005_d3dx9_26_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file jun2005_d3dx9_26_x86.inf
from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2005_d3dx9_26_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Jun2005_MDX_x86.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2005_d3dx9_27_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2005_d3dx9_27_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file aug2005_d3dx9_27_x86.inf
from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2005_d3dx9_27_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Aug2005_MDX_x86.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Oct2005_d3dx9_27_x86.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Oct2005_d3dx9_27_x64.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Oct2005_MDX_x86.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Oct2005_xinput_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Oct2005_xinput_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file oct2005_xinput_x86.inf from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Oct2005_xinput_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2005_d3dx9_28_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2005_d3dx9_28_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file dec2005_d3dx9_28_x86.inf
from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2005_d3dx9_28_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Dec2005_MDX1_x86_Archive.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Dec2005_MDX1_x86.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2006_d3dx9_29_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2006_d3dx9_29_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file feb2006_d3dx9_29_x86.inf
from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2006_d3dx9_29_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Feb2006_MDX1_x86_Archive.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Feb2006_MDX1_x86.cab does not exist.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2006_XACT_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2006_XACT_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file feb2006_xact_x86.inf from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2006_d3dx9_30_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2006_d3dx9_30_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file apr2006_d3dx9_30_x86.inf
from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2006_d3dx9_30_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Managed
DirectX Plug-In [Apr2006_MDX1_x86_Archive.cab] is not installed on this
platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Managed
DirectX Plug-In [Apr2006_MDX1_x86.cab] is not installed on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2006_XACT_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2006_XACT_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file apr2006_xact_x86.inf from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2006_xinput_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2006_xinput_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file apr2006_xinput_x86.inf from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2006_xinput_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2006_XACT_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2006_XACT_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file jun2006_xact_x86.inf from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2006_xinput_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2006_xinput_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file aug2006_xinput_x86.inf from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2006_xinput_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2006_XACT_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2006_XACT_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file aug2006_xact_x86.inf from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Oct2006_d3dx9_31_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Oct2006_d3dx9_31_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file oct2006_d3dx9_31_x86.inf
from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Oct2006_d3dx9_31_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Oct2006_XACT_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Oct2006_XACT_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file oct2006_xact_x86.inf from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Oct2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2006_d3dx9_32_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2006_d3dx9_32_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file dec2006_d3dx9_32_x86.inf
from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2006_d3dx9_32_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2006_d3dx10_00_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2006_d3dx10_00_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file dec2006_d3dx10_00_x86.inf
from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2006_d3dx10_00_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2006_XACT_x86.cab...
03/03/09 14:21:44: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2006_XACT_x86.cab is trusted.
03/03/09 14:21:44: dxupdate: Extracted file dec2006_xact_x86.inf from cab
03/03/09 14:21:44: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:44: dxupdate: -----
03/03/09 14:21:44: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2007_XACT_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2007_XACT_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file feb2007_xact_x86.inf from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_d3dx9_33_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_d3dx9_33_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file apr2007_d3dx9_33_x86.inf
from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_d3dx9_33_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_d3dx10_33_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_d3dx10_33_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file apr2007_d3dx10_33_x86.inf
from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:45: dxupdate: CheckDependency(): supported build number
is not checked for this Plug-In.
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_d3dx10_33_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_XACT_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_XACT_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file apr2007_xact_x86.inf from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_xinput_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_xinput_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file apr2007_xinput_x86.inf from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_xinput_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2007_d3dx9_34_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2007_d3dx9_34_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file jun2007_d3dx9_34_x86.inf
from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2007_d3dx9_34_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2007_d3dx10_34_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2007_d3dx10_34_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file jun2007_d3dx10_34_x86.inf
from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2007_d3dx10_34_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2007_XACT_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2007_XACT_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file jun2007_xact_x86.inf from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2007_d3dx9_35_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2007_d3dx9_35_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file aug2007_d3dx9_35_x86.inf
from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2007_d3dx9_35_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2007_d3dx10_35_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2007_d3dx10_35_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file aug2007_d3dx10_35_x86.inf
from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2007_d3dx10_35_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2007_XACT_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2007_XACT_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file aug2007_xact_x86.inf from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_d3dx9_36_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_d3dx9_36_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file nov2007_d3dx9_36_x86.inf
from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_d3dx9_36_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_d3dx10_36_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_d3dx10_36_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file nov2007_d3dx10_36_x86.inf
from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_d3dx10_36_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_X3DAudio_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_X3DAudio_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file nov2007_x3daudio_x86.inf
from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_XACT_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_XACT_x86.cab is trusted.
03/03/09 14:21:45: dxupdate: Extracted file nov2007_xact_x86.inf from cab
03/03/09 14:21:45: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:45: dxupdate: -----
03/03/09 14:21:45: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_d3dx9_37_x86.cab...
03/03/09 14:21:45: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_d3dx9_37_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Mar2008_d3dx9_37_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_d3dx9_37_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_d3dx10_37_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_d3dx10_37_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Mar2008_d3dx10_37_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_d3dx10_37_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_X3DAudio_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_X3DAudio_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Mar2008_X3DAudio_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_XACT_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_XACT_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Mar2008_XACT_x86.inf from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_XAudio_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_XAudio_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Mar2008_XAudio_x86.inf from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_d3dx9_38_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_d3dx9_38_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Jun2008_d3dx9_38_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_d3dx9_38_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_d3dx10_38_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_d3dx10_38_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Jun2008_d3dx10_38_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_d3dx10_38_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_X3DAudio_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_X3DAudio_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Jun2008_X3DAudio_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_XACT_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_XACT_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Jun2008_XACT_x86.inf from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_XAudio_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_XAudio_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Jun2008_XAudio_x86.inf from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_d3dx9_39_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_d3dx9_39_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Aug2008_d3dx9_39_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_d3dx9_39_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_d3dx10_39_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_d3dx10_39_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Aug2008_d3dx10_39_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_d3dx10_39_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_XACT_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_XACT_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Aug2008_XACT_x86.inf from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_XAudio_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_XAudio_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Aug2008_XAudio_x86.inf from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_X3DAudio_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_X3DAudio_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Nov2008_X3DAudio_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_XACT_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_XACT_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Nov2008_XACT_x86.inf from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_XAudio_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_XAudio_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Nov2008_XAudio_x86.inf from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_d3dx9_40_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_d3dx9_40_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Nov2008_d3dx9_40_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_d3dx9_40_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_d3dx10_40_x86.cab...
03/03/09 14:21:46: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_d3dx10_40_x86.cab is trusted.
03/03/09 14:21:46: dxupdate: Extracted file Nov2008_d3dx10_40_x86.inf
from cab
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:21:46: dxupdate: CheckDependency(): no dependency.
03/03/09 14:21:46: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:21:46: dxupdate: -----
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_d3dx10_40_x64.cab] is skipped on this platform.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2005_xinput_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2005_xinput_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2005_XACT_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2005_MDX_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_XACT_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_MDX2_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_MDX2_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_d3dx10_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_d3dx10_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_MDX2_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_MDX2_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_d3dx10_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_d3dx10_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_MDX2_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_MDX2_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_d3dx10_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_d3dx10_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2006_d3dx10_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2006_d3dx10_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Aug2006_d3dx10_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Aug2006_d3dx10_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2006_d3dx10_x86.cab] is skipped.
03/03/09 14:21:46: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2006_d3dx10_x64.cab] is skipped.
03/03/09 14:21:46: dxupdate: Total Files: 126
03/03/09 14:21:46: dxupdate: Total Size: 50289664
03/03/09 14:21:46: dxupdate: Total Progress: 34
03/03/09 14:21:46: dsetup32: Installation Started with language eng
03/03/09 14:21:47: dsetup32: DXCheckTrust(): C:\WINE~HPG\DXNT.cab is
trusted.
03/03/09 14:21:47: dsetup32: Extracted file dxnt.inf from cab
03/03/09 14:21:47: dsetup32: Extracted file dxntunp.inf from cab
03/03/09 14:21:47: dsetup32: Extracted file dxver.inf from cab
03/03/09 14:21:47: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:21:47: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:21:47: dsetup32: DXCheckTrust(): C:\WINE~HPG\bdant.cab is
trusted.
03/03/09 14:21:47: dsetup32: DXCheckTrust(): C:\WINE~HPG\bdaxp.cab is
trusted.
03/03/09 14:21:47: dsetup32: Extracted file dxbda.inf from cab
03/03/09 14:21:47: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:21:47: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:21:47: dsetup32: DoPrecopy: Root path = "null", flags =
0x2010098
03/03/09 14:21:47: dsetup32: Deleted: c:\windows\system\directx
03/03/09 14:21:47: dsetup32: DoCopy()
03/03/09 14:21:47: dsetup32: Checking the version:
HKLM\software\microsoft\directx\Version
03/03/09 14:21:47: dsetup32: Version in registry = 4.09.00.0904
03/03/09 14:21:47: dsetup32: Version in DLL = 4.09.00.0904
03/03/09 14:21:47: DXSetup: DSetupCallback(): Phase = 1, Steps = 182
03/03/09 14:21:47: dsetup32: DoCopy(): Iterating through
C:\WINE~HPG\DXNT.cab
03/03/09 14:21:47: dsetup32: CSetup::DoCopy(): SetupIterateCabinet()
failed, error = 3.
03/03/09 14:21:47: dsetup32: CSetup::DoCopy(): Unable to iterate through
C:\WINE~HPG\DXNT.cab. The file may be damaged.
03/03/09 14:21:47: dsetup32: SetupForDirectX: Restoring Backups
03/03/09 14:21:47: dsetup32: start finalizing: phase: 182 - 182, total:
473 - 0
03/03/09 14:21:47: DXSetup: DSetupCallback(): Phase = 3, Steps = 0
03/03/09 14:21:47: dsetup32: Installation ended with value -9 = Internal
or unsupported error
03/03/09 14:21:52: DXSetup: WM_APP_ENDINSTALL
03/03/09 14:21:52: DXSetup: ~CDXWSetup()
03/03/09 14:22:54: DXSetup: No command line switch
03/03/09 14:22:54: DXSetup: StartWizard()
03/03/09 14:22:54: dsetup32: IsWow64(): Windows 2000 or Windows 9x.
03/03/09 14:22:57: DXSetup: CDXWSetup()
03/03/09 14:23:04: DXSetup: start installation
03/03/09 14:23:04: DSETUP: DirectXSetupA(): hWnd: 00030028 dwFlags: 02010098
03/03/09 14:23:04: dsetup32: === SetupForDirectX() start ===
03/03/09 14:23:04: dsetup32: Oct 27 2008 09:42:44
03/03/09 14:23:04: dsetup32: DXSetupCommand = 0.
03/03/09 14:23:04: DXSetup: DSetupCallback(): Phase = 0, Steps = 0
03/03/09 14:23:04: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:23:04: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:23:04: dsetup32: Installing on Win2K
03/03/09 14:23:04: dsetup32: IsWow64(): Windows 2000 or Windows 9x.
03/03/09 14:23:04: dsetup32: BuildPaths(): temp directory
c:\windows\system\DirectX is created.
03/03/09 14:23:04: dsetup32: Unable to find mscoree.dll.
03/03/09 14:23:04: dsetup32: CheckForManagedDX(): .NETFramework is not
available, Managed DirectX is not installed.
03/03/09 14:23:04: dsetup32: Checking the version:
HKLM\software\microsoft\directx\Version
03/03/09 14:23:04: dsetup32: Version in registry = 4.09.00.0904
03/03/09 14:23:04: dsetup32: Version in DLL = 4.09.00.0904
03/03/09 14:23:04: dsetup32: DXCheckTrust(): C:\WINE~HPG\dxupdate.cab is
trusted.
03/03/09 14:23:04: dsetup32: GetCDXUpdate(): Extracting dxupdate.dll
from C:\WINE~HPG\dxupdate.cab.
03/03/09 14:23:04: dsetup32: Extracted file dxupdate.dll from cab
03/03/09 14:23:04: dsetup32: Extracted file dxupdate.inf from cab
03/03/09 14:23:04: dsetup32: Extracted file dxupdate.cif from cab
03/03/09 14:23:04: dsetup32: GetCDXUpdate(): Loading dxupdate.dll in
c:\windows\system\DirectX\DX49c2.tmp\.
03/03/09 14:23:04: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:23:04: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
dxdllreg_x86.cab...
03/03/09 14:23:04: dxupdate: DXCheckTrust():
C:\WINE~HPG\dxdllreg_x86.cab is trusted.
03/03/09 14:23:04: dxupdate: Extracted file dxdllreg_x86.inf from cab
03/03/09 14:23:04: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:04: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:04: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_1_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_1_x64.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_2_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_2_x64.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2902.0_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2903.0_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2904.0_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2905.0_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2906.0_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2907.0_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2908.0_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2909.0_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2910.0_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2005_d3dx9_24_x86.cab...
03/03/09 14:23:04: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2005_d3dx9_24_x86.cab is trusted.
03/03/09 14:23:04: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:04: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:04: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K_Feb2005_d3dx9_24_x86.cab] is being
installed.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2005_d3dx9_24_x64.cab] is skipped on this platform.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Feb2005_MDX_x86.MSI does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2005_d3dx9_25_x86.cab...
03/03/09 14:23:04: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2005_d3dx9_25_x86.cab is trusted.
03/03/09 14:23:04: dxupdate: Extracted file apr2005_d3dx9_25_x86.inf
from cab
03/03/09 14:23:04: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:04: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:04: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2005_d3dx9_25_x64.cab] is skipped on this platform.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Apr2005_MDX_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2005_d3dx9_26_x86.cab...
03/03/09 14:23:04: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2005_d3dx9_26_x86.cab is trusted.
03/03/09 14:23:04: dxupdate: Extracted file jun2005_d3dx9_26_x86.inf
from cab
03/03/09 14:23:04: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:04: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:04: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2005_d3dx9_26_x64.cab] is skipped on this platform.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Jun2005_MDX_x86.cab does not exist.
03/03/09 14:23:04: dxupdate: -----
03/03/09 14:23:04: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2005_d3dx9_27_x86.cab...
03/03/09 14:23:04: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2005_d3dx9_27_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file aug2005_d3dx9_27_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2005_d3dx9_27_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Aug2005_MDX_x86.cab does not exist.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Oct2005_d3dx9_27_x86.cab does not exist.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Oct2005_d3dx9_27_x64.cab does not exist.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Oct2005_MDX_x86.cab does not exist.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Oct2005_xinput_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Oct2005_xinput_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file oct2005_xinput_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Oct2005_xinput_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2005_d3dx9_28_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2005_d3dx9_28_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file dec2005_d3dx9_28_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2005_d3dx9_28_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Dec2005_MDX1_x86_Archive.cab does not exist.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Dec2005_MDX1_x86.cab does not exist.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2006_d3dx9_29_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2006_d3dx9_29_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file feb2006_d3dx9_29_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2006_d3dx9_29_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Feb2006_MDX1_x86_Archive.cab does not exist.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Feb2006_MDX1_x86.cab does not exist.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2006_XACT_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2006_XACT_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file feb2006_xact_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2006_d3dx9_30_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2006_d3dx9_30_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file apr2006_d3dx9_30_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2006_d3dx9_30_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Managed
DirectX Plug-In [Apr2006_MDX1_x86_Archive.cab] is not installed on this
platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Managed
DirectX Plug-In [Apr2006_MDX1_x86.cab] is not installed on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2006_XACT_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2006_XACT_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file apr2006_xact_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2006_xinput_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2006_xinput_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file apr2006_xinput_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2006_xinput_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2006_XACT_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2006_XACT_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file jun2006_xact_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2006_xinput_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2006_xinput_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file aug2006_xinput_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2006_xinput_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2006_XACT_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2006_XACT_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file aug2006_xact_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Oct2006_d3dx9_31_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Oct2006_d3dx9_31_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file oct2006_d3dx9_31_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Oct2006_d3dx9_31_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Oct2006_XACT_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Oct2006_XACT_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file oct2006_xact_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Oct2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2006_d3dx9_32_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2006_d3dx9_32_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file dec2006_d3dx9_32_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2006_d3dx9_32_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2006_d3dx10_00_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2006_d3dx10_00_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file dec2006_d3dx10_00_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2006_d3dx10_00_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2006_XACT_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2006_XACT_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file dec2006_xact_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2007_XACT_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2007_XACT_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file feb2007_xact_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_d3dx9_33_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_d3dx9_33_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file apr2007_d3dx9_33_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_d3dx9_33_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_d3dx10_33_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_d3dx10_33_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file apr2007_d3dx10_33_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:05: dxupdate: CheckDependency(): supported build number
is not checked for this Plug-In.
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_d3dx10_33_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_XACT_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_XACT_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file apr2007_xact_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_xinput_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_xinput_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file apr2007_xinput_x86.inf from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_xinput_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2007_d3dx9_34_x86.cab...
03/03/09 14:23:05: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2007_d3dx9_34_x86.cab is trusted.
03/03/09 14:23:05: dxupdate: Extracted file jun2007_d3dx9_34_x86.inf
from cab
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:05: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:05: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2007_d3dx9_34_x64.cab] is skipped on this platform.
03/03/09 14:23:05: dxupdate: -----
03/03/09 14:23:05: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2007_d3dx10_34_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2007_d3dx10_34_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file jun2007_d3dx10_34_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2007_d3dx10_34_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2007_XACT_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2007_XACT_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file jun2007_xact_x86.inf from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2007_d3dx9_35_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2007_d3dx9_35_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file aug2007_d3dx9_35_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2007_d3dx9_35_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2007_d3dx10_35_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2007_d3dx10_35_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file aug2007_d3dx10_35_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2007_d3dx10_35_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2007_XACT_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2007_XACT_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file aug2007_xact_x86.inf from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_d3dx9_36_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_d3dx9_36_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file nov2007_d3dx9_36_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_d3dx9_36_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_d3dx10_36_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_d3dx10_36_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file nov2007_d3dx10_36_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_d3dx10_36_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_X3DAudio_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_X3DAudio_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file nov2007_x3daudio_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_XACT_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_XACT_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file nov2007_xact_x86.inf from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_d3dx9_37_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_d3dx9_37_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Mar2008_d3dx9_37_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_d3dx9_37_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_d3dx10_37_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_d3dx10_37_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Mar2008_d3dx10_37_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_d3dx10_37_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_X3DAudio_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_X3DAudio_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Mar2008_X3DAudio_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_XACT_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_XACT_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Mar2008_XACT_x86.inf from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_XAudio_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_XAudio_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Mar2008_XAudio_x86.inf from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_d3dx9_38_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_d3dx9_38_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Jun2008_d3dx9_38_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_d3dx9_38_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_d3dx10_38_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_d3dx10_38_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Jun2008_d3dx10_38_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_d3dx10_38_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_X3DAudio_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_X3DAudio_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Jun2008_X3DAudio_x86.inf
from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_XACT_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_XACT_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Jun2008_XACT_x86.inf from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_XAudio_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_XAudio_x86.cab is trusted.
03/03/09 14:23:06: dxupdate: Extracted file Jun2008_XAudio_x86.inf from cab
03/03/09 14:23:06: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:23:06: dxupdate: -----
03/03/09 14:23:06: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_d3dx9_39_x86.cab...
03/03/09 14:23:06: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_d3dx9_39_x86.cab is trusted.
03/03/09 14:23:07: dxupdate: Extracted file Aug2008_d3dx9_39_x86.inf
from cab
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:07: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_d3dx9_39_x64.cab] is skipped on this platform.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_d3dx10_39_x86.cab...
03/03/09 14:23:07: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_d3dx10_39_x86.cab is trusted.
03/03/09 14:23:07: dxupdate: Extracted file Aug2008_d3dx10_39_x86.inf
from cab
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:07: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_d3dx10_39_x64.cab] is skipped on this platform.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_XACT_x86.cab...
03/03/09 14:23:07: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_XACT_x86.cab is trusted.
03/03/09 14:23:07: dxupdate: Extracted file Aug2008_XACT_x86.inf from cab
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_XAudio_x86.cab...
03/03/09 14:23:07: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_XAudio_x86.cab is trusted.
03/03/09 14:23:07: dxupdate: Extracted file Aug2008_XAudio_x86.inf from cab
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_X3DAudio_x86.cab...
03/03/09 14:23:07: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_X3DAudio_x86.cab is trusted.
03/03/09 14:23:07: dxupdate: Extracted file Nov2008_X3DAudio_x86.inf
from cab
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_XACT_x86.cab...
03/03/09 14:23:07: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_XACT_x86.cab is trusted.
03/03/09 14:23:07: dxupdate: Extracted file Nov2008_XACT_x86.inf from cab
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_XAudio_x86.cab...
03/03/09 14:23:07: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_XAudio_x86.cab is trusted.
03/03/09 14:23:07: dxupdate: Extracted file Nov2008_XAudio_x86.inf from cab
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_d3dx9_40_x86.cab...
03/03/09 14:23:07: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_d3dx9_40_x86.cab is trusted.
03/03/09 14:23:07: dxupdate: Extracted file Nov2008_d3dx9_40_x86.inf
from cab
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:07: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_d3dx9_40_x64.cab] is skipped on this platform.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_d3dx10_40_x86.cab...
03/03/09 14:23:07: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_d3dx10_40_x86.cab is trusted.
03/03/09 14:23:07: dxupdate: Extracted file Nov2008_d3dx10_40_x86.inf
from cab
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:23:07: dxupdate: CheckDependency(): no dependency.
03/03/09 14:23:07: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:23:07: dxupdate: -----
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_d3dx10_40_x64.cab] is skipped on this platform.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2005_xinput_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2005_xinput_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2005_XACT_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2005_MDX_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_XACT_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_MDX2_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_MDX2_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_d3dx10_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_d3dx10_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_MDX2_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_MDX2_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_d3dx10_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_d3dx10_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_MDX2_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_MDX2_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_d3dx10_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_d3dx10_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2006_d3dx10_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2006_d3dx10_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Aug2006_d3dx10_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Aug2006_d3dx10_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2006_d3dx10_x86.cab] is skipped.
03/03/09 14:23:07: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2006_d3dx10_x64.cab] is skipped.
03/03/09 14:23:07: dxupdate: Total Files: 126
03/03/09 14:23:07: dxupdate: Total Size: 50289664
03/03/09 14:23:07: dxupdate: Total Progress: 34
03/03/09 14:23:07: dsetup32: Installation Started with language eng
03/03/09 14:23:07: dsetup32: DXCheckTrust(): C:\WINE~HPG\DXNT.cab is
trusted.
03/03/09 14:23:07: dsetup32: Extracted file dxnt.inf from cab
03/03/09 14:23:07: dsetup32: Extracted file dxntunp.inf from cab
03/03/09 14:23:07: dsetup32: Extracted file dxver.inf from cab
03/03/09 14:23:07: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:23:07: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:23:07: dsetup32: DXCheckTrust(): C:\WINE~HPG\bdant.cab is
trusted.
03/03/09 14:23:07: dsetup32: DXCheckTrust(): C:\WINE~HPG\bdaxp.cab is
trusted.
03/03/09 14:23:07: dsetup32: Extracted file dxbda.inf from cab
03/03/09 14:23:07: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:23:07: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:23:07: dsetup32: DoPrecopy: Root path = "null", flags =
0x2010098
03/03/09 14:23:07: dsetup32: Deleted: c:\windows\system\directx
03/03/09 14:23:07: dsetup32: DoCopy()
03/03/09 14:23:07: dsetup32: Checking the version:
HKLM\software\microsoft\directx\Version
03/03/09 14:23:07: dsetup32: Version in registry = 4.09.00.0904
03/03/09 14:23:07: dsetup32: Version in DLL = 4.09.00.0904
03/03/09 14:23:07: DXSetup: DSetupCallback(): Phase = 1, Steps = 182
03/03/09 14:23:07: dsetup32: DoCopy(): Iterating through
C:\WINE~HPG\DXNT.cab
03/03/09 14:23:07: dsetup32: CSetup::DoCopy(): SetupIterateCabinet()
failed, error = 3.
03/03/09 14:23:07: dsetup32: CSetup::DoCopy(): Unable to iterate through
C:\WINE~HPG\DXNT.cab. The file may be damaged.
03/03/09 14:23:07: dsetup32: SetupForDirectX: Restoring Backups
03/03/09 14:23:07: dsetup32: start finalizing: phase: 182 - 182, total:
473 - 0
03/03/09 14:23:07: DXSetup: DSetupCallback(): Phase = 3, Steps = 0
03/03/09 14:23:07: dsetup32: Installation ended with value -9 = Internal
or unsupported error
03/03/09 14:23:13: DXSetup: WM_APP_ENDINSTALL
03/03/09 14:23:13: DXSetup: ~CDXWSetup()
03/03/09 14:28:05: DXSetup: No command line switch
03/03/09 14:28:06: DXSetup: StartWizard()
03/03/09 14:28:06: dsetup32: IsWow64(): Windows 2000 or Windows 9x.
03/03/09 14:28:09: DXSetup: CDXWSetup()
03/03/09 14:28:10: DXSetup: start installation
03/03/09 14:28:10: DSETUP: DirectXSetupA(): hWnd: 00030028 dwFlags: 02010098
03/03/09 14:28:10: dsetup32: === SetupForDirectX() start ===
03/03/09 14:28:10: dsetup32: Oct 27 2008 09:42:44
03/03/09 14:28:10: dsetup32: DXSetupCommand = 0.
03/03/09 14:28:10: DXSetup: DSetupCallback(): Phase = 0, Steps = 0
03/03/09 14:28:10: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:28:10: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:28:10: dsetup32: Installing on Win2K
03/03/09 14:28:10: dsetup32: IsWow64(): Windows 2000 or Windows 9x.
03/03/09 14:28:10: dsetup32: BuildPaths(): temp directory
c:\windows\system\DirectX is created.
03/03/09 14:28:10: dsetup32: Unable to find mscoree.dll.
03/03/09 14:28:10: dsetup32: CheckForManagedDX(): .NETFramework is not
available, Managed DirectX is not installed.
03/03/09 14:28:10: dsetup32: Checking the version:
HKLM\software\microsoft\directx\Version
03/03/09 14:28:10: dsetup32: Version in registry = 4.09.00.0904
03/03/09 14:28:10: dsetup32: Version in DLL = 4.09.00.0904
03/03/09 14:28:11: dsetup32: DXCheckTrust(): C:\WINE~HPG\dxupdate.cab is
trusted.
03/03/09 14:28:11: dsetup32: GetCDXUpdate(): Extracting dxupdate.dll
from C:\WINE~HPG\dxupdate.cab.
03/03/09 14:28:11: dsetup32: Extracted file dxupdate.dll from cab
03/03/09 14:28:11: dsetup32: Extracted file dxupdate.inf from cab
03/03/09 14:28:11: dsetup32: Extracted file dxupdate.cif from cab
03/03/09 14:28:11: dsetup32: GetCDXUpdate(): Loading dxupdate.dll in
c:\windows\system\DirectX\DX3abd.tmp\.
03/03/09 14:28:11: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:28:11: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
dxdllreg_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\dxdllreg_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file dxdllreg_x86.inf from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_1_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_1_x64.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_2_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
RGB9Rast_2_x64.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2902.0_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2903.0_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2904.0_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2905.0_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2906.0_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2907.0_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2908.0_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2909.0_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
MDX_1.0.2910.0_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2005_d3dx9_24_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2005_d3dx9_24_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K_Feb2005_d3dx9_24_x86.cab] is being
installed.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2005_d3dx9_24_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Feb2005_MDX_x86.MSI does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2005_d3dx9_25_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2005_d3dx9_25_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file apr2005_d3dx9_25_x86.inf
from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2005_d3dx9_25_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Apr2005_MDX_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2005_d3dx9_26_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2005_d3dx9_26_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file jun2005_d3dx9_26_x86.inf
from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2005_d3dx9_26_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Jun2005_MDX_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2005_d3dx9_27_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2005_d3dx9_27_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file aug2005_d3dx9_27_x86.inf
from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2005_d3dx9_27_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Aug2005_MDX_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Oct2005_d3dx9_27_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Oct2005_d3dx9_27_x64.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Oct2005_MDX_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Oct2005_xinput_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Oct2005_xinput_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file oct2005_xinput_x86.inf from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Oct2005_xinput_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2005_d3dx9_28_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2005_d3dx9_28_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file dec2005_d3dx9_28_x86.inf
from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2005_d3dx9_28_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Dec2005_MDX1_x86_Archive.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Dec2005_MDX1_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2006_d3dx9_29_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2006_d3dx9_29_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file feb2006_d3dx9_29_x86.inf
from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2006_d3dx9_29_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Feb2006_MDX1_x86_Archive.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Plug-In
Feb2006_MDX1_x86.cab does not exist.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2006_XACT_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2006_XACT_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file feb2006_xact_x86.inf from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2006_d3dx9_30_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2006_d3dx9_30_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file apr2006_d3dx9_30_x86.inf
from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2006_d3dx9_30_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Managed
DirectX Plug-In [Apr2006_MDX1_x86_Archive.cab] is not installed on this
platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Managed
DirectX Plug-In [Apr2006_MDX1_x86.cab] is not installed on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2006_XACT_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2006_XACT_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file apr2006_xact_x86.inf from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2006_xinput_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2006_xinput_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file apr2006_xinput_x86.inf from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2006_xinput_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2006_XACT_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2006_XACT_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file jun2006_xact_x86.inf from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2006_xinput_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2006_xinput_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file aug2006_xinput_x86.inf from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2006_xinput_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2006_XACT_x86.cab...
03/03/09 14:28:11: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2006_XACT_x86.cab is trusted.
03/03/09 14:28:11: dxupdate: Extracted file aug2006_xact_x86.inf from cab
03/03/09 14:28:11: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:11: dxupdate: -----
03/03/09 14:28:11: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Oct2006_d3dx9_31_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Oct2006_d3dx9_31_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file oct2006_d3dx9_31_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Oct2006_d3dx9_31_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Oct2006_XACT_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Oct2006_XACT_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file oct2006_xact_x86.inf from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Oct2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2006_d3dx9_32_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2006_d3dx9_32_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file dec2006_d3dx9_32_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2006_d3dx9_32_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2006_d3dx10_00_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2006_d3dx10_00_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file dec2006_d3dx10_00_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2006_d3dx10_00_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Dec2006_XACT_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Dec2006_XACT_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file dec2006_xact_x86.inf from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Dec2006_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Feb2007_XACT_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Feb2007_XACT_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file feb2007_xact_x86.inf from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Feb2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_d3dx9_33_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_d3dx9_33_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file apr2007_d3dx9_33_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_d3dx9_33_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_d3dx10_33_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_d3dx10_33_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file apr2007_d3dx10_33_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:12: dxupdate: CheckDependency(): supported build number
is not checked for this Plug-In.
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_d3dx10_33_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_XACT_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_XACT_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file apr2007_xact_x86.inf from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Apr2007_xinput_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Apr2007_xinput_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file apr2007_xinput_x86.inf from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Apr2007_xinput_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2007_d3dx9_34_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2007_d3dx9_34_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file jun2007_d3dx9_34_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2007_d3dx9_34_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2007_d3dx10_34_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2007_d3dx10_34_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file jun2007_d3dx10_34_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2007_d3dx10_34_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2007_XACT_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2007_XACT_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file jun2007_xact_x86.inf from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2007_d3dx9_35_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2007_d3dx9_35_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file aug2007_d3dx9_35_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2007_d3dx9_35_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2007_d3dx10_35_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2007_d3dx10_35_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file aug2007_d3dx10_35_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2007_d3dx10_35_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2007_XACT_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2007_XACT_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file aug2007_xact_x86.inf from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_d3dx9_36_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_d3dx9_36_x86.cab is trusted.
03/03/09 14:28:12: dxupdate: Extracted file nov2007_d3dx9_36_x86.inf
from cab
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:12: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:12: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_d3dx9_36_x64.cab] is skipped on this platform.
03/03/09 14:28:12: dxupdate: -----
03/03/09 14:28:12: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_d3dx10_36_x86.cab...
03/03/09 14:28:12: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_d3dx10_36_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file nov2007_d3dx10_36_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_d3dx10_36_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_X3DAudio_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_X3DAudio_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file nov2007_x3daudio_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2007_XACT_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2007_XACT_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file nov2007_xact_x86.inf from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2007_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_d3dx9_37_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_d3dx9_37_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Mar2008_d3dx9_37_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_d3dx9_37_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_d3dx10_37_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_d3dx10_37_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Mar2008_d3dx10_37_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_d3dx10_37_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_X3DAudio_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_X3DAudio_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Mar2008_X3DAudio_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_XACT_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_XACT_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Mar2008_XACT_x86.inf from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Mar2008_XAudio_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Mar2008_XAudio_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Mar2008_XAudio_x86.inf from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Mar2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_d3dx9_38_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_d3dx9_38_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Jun2008_d3dx9_38_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_d3dx9_38_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_d3dx10_38_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_d3dx10_38_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Jun2008_d3dx10_38_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_d3dx10_38_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_X3DAudio_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_X3DAudio_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Jun2008_X3DAudio_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_XACT_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_XACT_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Jun2008_XACT_x86.inf from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Jun2008_XAudio_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Jun2008_XAudio_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Jun2008_XAudio_x86.inf from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Jun2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_d3dx9_39_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_d3dx9_39_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Aug2008_d3dx9_39_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_d3dx9_39_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_d3dx10_39_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_d3dx10_39_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Aug2008_d3dx10_39_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_d3dx10_39_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_XACT_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_XACT_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Aug2008_XACT_x86.inf from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Aug2008_XAudio_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Aug2008_XAudio_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Aug2008_XAudio_x86.inf from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Aug2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_X3DAudio_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_X3DAudio_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Nov2008_X3DAudio_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_X3DAudio_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_XACT_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_XACT_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Nov2008_XACT_x86.inf from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_XACT_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_XAudio_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_XAudio_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Nov2008_XAudio_x86.inf from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_XAudio_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_d3dx9_40_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_d3dx9_40_x86.cab is trusted.
03/03/09 14:28:13: dxupdate: Extracted file Nov2008_d3dx9_40_x86.inf
from cab
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:13: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:13: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_d3dx9_40_x64.cab] is skipped on this platform.
03/03/09 14:28:13: dxupdate: -----
03/03/09 14:28:13: dxupdate: DirectXUpdateInstallPlugIn(): Checking for
Nov2008_d3dx10_40_x86.cab...
03/03/09 14:28:13: dxupdate: DXCheckTrust():
C:\WINE~HPG\Nov2008_d3dx10_40_x86.cab is trusted.
03/03/09 14:28:14: dxupdate: Extracted file Nov2008_d3dx10_40_x86.inf
from cab
03/03/09 14:28:14: dxupdate: DirectXUpdateGetSetupInformation(): DirectX
Version: 4.09.00.0904.0
03/03/09 14:28:14: dxupdate: CheckDependency(): no dependency.
03/03/09 14:28:14: dxupdate: DirectXUpdateGetSetupInformation(): Section
[4.09.00.0904.0-4.09.00.0904.0_Win2K] is being installed.
03/03/09 14:28:14: dxupdate: -----
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): 64bit Plug-In
[Nov2008_d3dx10_40_x64.cab] is skipped on this platform.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2005_xinput_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2005_xinput_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2005_XACT_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2005_MDX_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_XACT_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_MDX2_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_MDX2_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_d3dx10_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Dec2005_d3dx10_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_MDX2_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_MDX2_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_d3dx10_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Feb2006_d3dx10_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_MDX2_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_MDX2_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_d3dx10_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Apr2006_d3dx10_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2006_d3dx10_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Jun2006_d3dx10_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Aug2006_d3dx10_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Aug2006_d3dx10_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2006_d3dx10_x86.cab] is skipped.
03/03/09 14:28:14: dxupdate: DirectXUpdateInstallPlugIn(): folder does
not exist, [Beta_Oct2006_d3dx10_x64.cab] is skipped.
03/03/09 14:28:14: dxupdate: Total Files: 126
03/03/09 14:28:14: dxupdate: Total Size: 50289664
03/03/09 14:28:14: dxupdate: Total Progress: 34
03/03/09 14:28:14: dsetup32: Installation Started with language eng
03/03/09 14:28:14: dsetup32: DXCheckTrust(): C:\WINE~HPG\DXNT.cab is
trusted.
03/03/09 14:28:14: dsetup32: Extracted file dxnt.inf from cab
03/03/09 14:28:14: dsetup32: Extracted file dxntunp.inf from cab
03/03/09 14:28:14: dsetup32: Extracted file dxver.inf from cab
03/03/09 14:28:14: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:28:14: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:28:14: dsetup32: DXCheckTrust(): C:\WINE~HPG\bdant.cab is
trusted.
03/03/09 14:28:14: dsetup32: DXCheckTrust(): C:\WINE~HPG\bdaxp.cab is
trusted.
03/03/09 14:28:14: dsetup32: Extracted file dxbda.inf from cab
03/03/09 14:28:14: dsetup32: DirectXSetupIsJapanese == 0
03/03/09 14:28:14: dsetup32: DirectXSetupIsJapanNec == 0
03/03/09 14:28:14: dsetup32: DoPrecopy: Root path = "null", flags =
0x2010098
03/03/09 14:28:14: dsetup32: Deleted: c:\windows\system\directx
03/03/09 14:28:14: dsetup32: DoCopy()
03/03/09 14:28:14: dsetup32: Checking the version:
HKLM\software\microsoft\directx\Version
03/03/09 14:28:14: dsetup32: Version in registry = 4.09.00.0904
03/03/09 14:28:14: dsetup32: Version in DLL = 4.09.00.0904
03/03/09 14:28:14: DXSetup: DSetupCallback(): Phase = 1, Steps = 182
03/03/09 14:28:14: dsetup32: DoCopy(): Iterating through
C:\WINE~HPG\DXNT.cab
03/03/09 14:28:14: dsetup32: CSetup::DoCopy(): SetupIterateCabinet()
failed, error = 3.
03/03/09 14:28:14: dsetup32: CSetup::DoCopy(): Unable to iterate through
C:\WINE~HPG\DXNT.cab. The file may be damaged.
03/03/09 14:28:14: dsetup32: SetupForDirectX: Restoring Backups
03/03/09 14:28:14: dsetup32: start finalizing: phase: 182 - 182, total:
473 - 0
03/03/09 14:28:14: DXSetup: DSetupCallback(): Phase = 3, Steps = 0
03/03/09 14:28:14: dsetup32: Installation ended with value -9 = Internal
or unsupported error
03/03/09 14:29:08: DXSetup: WM_APP_ENDINSTALL
03/03/09 14:29:08: DXSetup: ~CDXWSetup()
3
3
Robert Wilhelm wrote:
> Second try, now patch as attachment.
>
1) Please don't add autogenerated files to patch.
----
configure | 9 ++++
configure.ac | 1 +
----
2) Patches [2/n] and [3/n].
Each patch should contain all related changes to be useful.
After your patch [2/n] resource file is unused.
Maybe it's better to merge [2/n] and [3/n]?
P.S. GUID_NULL is already defined in uuid.lib
3
2