The forum

[Script] Age of Empires III

Author Replies
coxtor Sunday 24 June 2012 at 16:49
coxtorAnonymous

Intro
I hope this isn't obsolete, but the age of empires III installer isn't listed in POL anymore, here is a new working script.

Game
Age of Empires III

Tested on 
Intel Q6600 2.4 Ghz, 4GB DDR RAM, nVidia GTX560TI

OS
Ubuntu 12.04 32 Bit + Gnome-shell 3.4.1

Wine Version
Standard 1.5.7

Tested
All works great on highest settings.
No Crack is required
Patching with other POL scripts possible

Known Issues
After finishing the setup POL doesn't continue, you have to type "killall wineserver" in a terminal and then proceed.

You need to start the game with a virtual Monitor, otherwise DirectX wont initialize. 
For some reason wine ignores the script assignment.

Screenshot
[URL=http://imageshack.us/photo/my-images/829/bildschirmfotovom201206.png/][IMG]http://img829.imageshack.us/img829/9480/bildschirmfotovom201206.th.png[/IMG][/URL]
[URL=http://imageshack.us/photo/my-images/513/bildschirmfotovom201206.png/][IMG]http://img513.imageshack.us/img513/9480/bildschirmfotovom201206.th.png[/IMG][/URL]
[URL=http://imageshack.us/photo/my-images/35/bildschirmfotovom201206u.png/][IMG]http://img35.imageshack.us/img35/1836/bildschirmfotovom201206u.th.png[/IMG][/URL]
[URL=http://imageshack.us/photo/my-images/404/bildschirmfotovom201206.png/][IMG]http://img404.imageshack.us/img404/9480/bildschirmfotovom201206.th.png[/IMG][/URL]
[URL=http://imageshack.us/photo/my-images/37/bildschirmfotovom201206.png/][IMG]http://img37.imageshack.us/img37/9480/bildschirmfotovom201206.th.png[/IMG][/URL]

Icon
[URL=http://imageshack.us/photo/my-images/4/age3n.png/][IMG]http://img4.imageshack.us/img4/7995/age3n.png[/IMG][/URL]

The Script
[code language=playonlinux]
#!/bin/bash
# Date : 2012-7-23 16:31
# Last revision : 2012-7-23 16:31
# Wine version used : 1.5.7
# Distribution used to test : Ubuntu 12.04 32bit
# Author : Coxtor
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "This program requires $APPLICATION_TITLE 4.0.18"
TITLE="Age of Empires III"
PREFIX="AOE3" #to make it compatible with old scripts on pol

POL_SetupWindow_Init #Get started

POL_Debug_Init #Enable debugging

POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.ageofempires3.com/" "Coxtor" "$PREFIX"
POL_SetupWindow_message "After finishing the setup POL doesn't continue, you have to type \\"killall wineserver\\" in a terminal and then proceed." "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.5.7"
Set_Desktop "On" "1024" "768"
Set_OS "winxp"

POL_System_TmpCreate "$PREFIX"

#Pre Wine Config
POL_Call POL_Install_amstream
POL_Call POL_Install_devenum
POL_Call POL_Install_dotnet20
POL_Call POL_Install_ffdshow
POL_Call POL_Install_msxml4
POL_Call POL_Install_quartz
POL_Call POL_Install_riched30
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_vcrun6
POL_Call POL_Install_xvid

Set_WineWindowTitle "$TITLE"
POL_Wine_OverrideDLL "native,builtin" "quartz"
POL_Wine_OverrideDLL "native,builtin" "msxml4r"

POL_SetupWindow_InstallMethod "LOCAL,DVD"
if [ "$INSTALL_METHOD" = "LOCAL" ];then
#Local folder
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine start /unix "$APP_ANSWER"
    POL_Wine_WaitExit "$TITLE"
elif [ "$INSTALL_METHOD" = "DVD" ];then
#CDROM install
    cd "$POL_System_TmpDir"
    mkdir "installFiles"
    POL_SetupWindow_menu_list "How many CD's have you got?" "$TITLE" "1~2~3~4" "~"
    CDS=$APP_ANSWER
    POL_SetupWindow_cdrom
    POL_SetupWindow_check_cdrom "Age of Empires III/age3.exe"
    POL_Debug_Message "copying cd files"
    sleep 5
    POL_System_CopyDirectory "$CDROM" "$POL_System_TmpDir/installFiles/"
    POL_SetupWindow_wait_next_signal

    COUNTER="2"
    let    CDS="$CDS+1"
    until [ "$COUNTER" -eq "$CDS" ];do
        POL_Debug_Message "$COUNTER -eq $CDS"
        POL_SetupWindow_message "Please insert Disk $COUNTER" "$TITLE"
        ENDNAME="C~1.cab"
        FILENAME="DISK$COUNTER$ENDNAME"
        POL_SetupWindow_check_cdrom "$FILENAME"
        POL_Debug_Message "copying cd files"
        sleep 5 # I had issues without this
        POL_System_CopyDirectory "$CDROM" "$POL_System_TmpDir/installFiles/"
        POL_SetupWindow_wait_next_signal
        let COUNTER="$COUNTER+1"
       done   

    POL_Wine_WaitBefore "$TITLE"
    POL_Wine start /unix "$POL_System_TmpDir/installFiles/setup.exe"
    POL_Wine_WaitExit "setup.exe"
fi

#Prepare installation for Expansions
mkdir -p "$WINEPREFIX/drive_c/windows/profiles/All Users/Start Menu/Programs/Microsoft Games/Age of Empires III"

#Post Wine config
POL_Call POL_Install_d3dx9
POL_Call POL_Install_dinput8
POL_Call POL_Install_directmusic
POL_Call POL_Install_directplay
POL_Call POL_Install_dsound
POL_Call POL_Install_corefonts

POL_System_TmpDelete # Delete tmp data

#Shortcuts
POL_Shortcut "age3.exe" "$TITLE"

#Additional Information
POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
POL_SetupWindow_Close
exit
[/code]

Edited by coxtor

coxtor Sunday 24 June 2012 at 16:59
coxtorAnonymous

Damn , just found it in beta, sorry for useless post
Quentin PÂRIS Sunday 24 June 2012 at 17:52
Quentin PÂRISAnonymous

The beta script is quite buggy (I think). If yours work well, we could make some replacement
b_istvan Wednesday 28 August 2013 at 14:16
b_istvanAnonymous

Hope there is no problem commenting here, i just installed it using the script, patched, and i could install the asian dynasties also with pol. I needed to download and install BCM for sound, and copy a file, then register it, but nothing else, the script did everything. Hopefully i can on local network, didn't tested yet. Thanks for the script!
jorkim Wednesday 13 November 2013 at 18:29
jorkimAnonymous

Hi.
I get stuck at entering the CD key. I can only input 4 characters in the first of the five boxes. The rest work fine.
Please help.
steve723 Saturday 4 January 2014 at 7:53
steve723Anonymous

The Frauhofer IIS MPEG Layer-3codec (l3codecx.ax) can not be found on this computer. It is a required component of Microsoft Direct Show, and is required for proper sound playback in Age of Empires III.

Do I need to install DirectShow? If so then POL needs to add the script under configuration > Install Components.

Edited by steve723

petch Saturday 4 January 2014 at 23:18
petch

steve723 Sunday 5 January 2014 at 2:03
steve723Anonymous

I installed quartz so why am I getting the error message? Also the opening video plays in a very tiny square in the top right corner of my screen.

[01/03/14 20:46:23] - Running wine-1.7.9 --version (Working directory : /home/steve7233/.PlayOnLinux)
wine-1.7.9

PlayOnLinux logfile
-------------------
Date: 01/03/14 20:46:23

> PlayOnLinux Version
4.2.1
> uname -a
Linux steve7233-HP-Pavilion-dv6-Notebook-PC 3.11.0-14-generic #21-Ubuntu SMP Tue Nov 12 17:04:55 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
> lsb_release -a

> wine --version
wine-1.7.9
> POL_WINEVERSION
1.7.9
> WINEPREFIX
/home/steve7233/.PlayOnLinux//wineprefix/AGEofEmpiresIII
> Distribution
Ubuntu 13.10
> glxinfo \| grep rendering
direct rendering: Yes
> glxinfo \| grep renderer
OpenGL renderer string: Mesa DRI Mobile Intel® GM45 Express Chipset
> OpenGL libs (Direct rendering testing)



[01/03/14 20:46:51] - Running wine-1.7.9 cmd /c echo %ProgramFiles% (Working directory : /home/steve7233/.PlayOnLinux)
C:\Program Files
[01/03/14 20:46:55] - Running wine-1.7.9 winecfg (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII)
[01/03/14 20:51:00] - ----- Starting function POL_Install_corefonts -----
[01/03/14 20:51:00] - ----- Ending function POL_Install_corefonts -----
[01/03/14 20:51:00] - ----- Starting function POL_Install_d3dx9 -----
[01/03/14 20:51:05] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources)
[01/03/14 20:51:05] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*d3dx9_24"="native, builtin"
"*d3dx9_25"="native, builtin"
"*d3dx9_26"="native, builtin"
"*d3dx9_27"="native, builtin"
"*d3dx9_28"="native, builtin"
"*d3dx9_29"="native, builtin"
"*d3dx9_30"="native, builtin"
"*d3dx9_31"="native, builtin"
"*d3dx9_32"="native, builtin"
"*d3dx9_33"="native, builtin"
"*d3dx9_34"="native, builtin"
"*d3dx9_35"="native, builtin"
"*d3dx9_36"="native, builtin"
"*d3dx9_37"="native, builtin"
"*d3dx9_38"="native, builtin"
"*d3dx9_39"="native, builtin"
"*d3dx9_40"="native, builtin"
"*d3dx9_42"="native, builtin"
"*d3dx9_42"="native, builtin"
"*d3dx9_43"="native, builtin"
-----------
[01/03/14 20:51:06] - ----- Ending function POL_Install_d3dx9 -----
[01/03/14 20:51:06] - ----- Starting function POL_Install_FontsSmoothRGB -----
[01/03/14 20:51:07] - ----- Starting function POL_Function_FontsSmoothRGB -----
[01/03/14 20:51:07] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/fontsaa.reg (Working directory : /home/steve7233/.PlayOnLinux/tmp)
[01/03/14 20:51:07] - Content of /home/steve7233/.PlayOnLinux//tmp/fontsaa.reg
-----------
REGEDIT4
[HKEY_CURRENT_USER\Control Panel\Desktop]
"FontSmoothing"="2"
"FontSmoothingType"=dword:00000002
"FontSmoothingGamma"=dword:00000578
"FontSmoothingOrientation"=dword:00000001
-----------
[01/03/14 20:51:07] - ----- Ending function POL_Function_FontsSmoothRGB -----
[01/03/14 20:51:07] - ----- Ending function POL_Install_FontsSmoothRGB -----
[01/03/14 20:51:07] - ----- Starting function POL_Install_steam -----
[01/03/14 20:51:08] - Running wine-1.7.9 cmd /c echo %ProgramFiles% (Working directory : /home/steve7233/.PlayOnLinux/tmp)
C:\Program Files
[01/03/14 20:51:08] - ----- Starting function POL_Function_FontsSmoothRGB -----
[01/03/14 20:51:10] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/fontsaa.reg (Working directory : /home/steve7233/.PlayOnLinux/tmp)
[01/03/14 20:51:10] - Content of /home/steve7233/.PlayOnLinux//tmp/fontsaa.reg
-----------
REGEDIT4
[HKEY_CURRENT_USER\Control Panel\Desktop]
"FontSmoothing"="2"
"FontSmoothingType"=dword:00000002
"FontSmoothingGamma"=dword:00000578
"FontSmoothingOrientation"=dword:00000001
-----------
[01/03/14 20:51:10] - ----- Ending function POL_Function_FontsSmoothRGB -----
[01/03/14 20:51:10] - Running wine-1.7.9 msiexec /i SteamInstall.msi /q (Working directory : /home/steve7233/.PlayOnLinux/ressources)
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:msi:ITERATE_CreateShortcuts poorly handled shortcut format, advertised shortcut
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x1337f0, L"C:\\Program Files\\Steam\\Steam.exe"
fixme:hnetcfg:fw_app_put_Name 0x1337f0, L"Steam"
fixme:hnetcfg:fw_apps_Add 0x1337a8, 0x1337f0
fixme:service:SERV_QueryServiceObjectSecurity 0x1336e0 4 0x33f97c 512 0x33fbb0 - semi-stub
fixme:service:SetServiceObjectSecurity 0x1336e0 4 0x33fb7c
Steam Client Service install completed.[01/03/14 20:51:16] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources)
[01/03/14 20:51:16] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*dwrite"=""
-----------
[01/03/14 20:51:16] - ----- Ending function POL_Install_steam -----
[01/03/14 20:51:38] - Running wine-1.7.9 /home/steve7233/Downloads/SteamSetup.exe (Working directory : /)
fixme:shell:SHAutoComplete stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x1337d8, L"C:\\Program Files\\Steam\\steam.exe"
fixme:hnetcfg:fw_app_put_Name 0x1337d8, L"Steam"
fixme:hnetcfg:fw_apps_Add 0x133790, 0x1337d8
err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered
err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
[2014-01-03 20:51:54] Startup - updater built Nov 25 2013 17:46:38
[2014-01-03 20:51:54] Verifying installation...
[2014-01-03 20:51:54] Unable to read and verify install manifest C:\Program Files\Steam\package\steam_client_win32.installed
[2014-01-03 20:51:54] Verification complete
[2014-01-03 20:51:54] Downloading update...
[2014-01-03 20:51:54] Checking for available updates...
[2014-01-03 20:51:54] Package file strings_all.zip.bde7871b3e5f3ec450cde93ec97559f4afc8fbe2 missing or incorrect size
[2014-01-03 20:51:54] Package file resources_all.zip.ff5b39c4f9cae2a9f3381d4f9a7bd5220c7799a1 missing or incorrect size
[2014-01-03 20:51:54] Package file tenfoot_all.zip.628cd4e091dd02639a05eb1eb434bb939ab79fc4 missing or incorrect size
[2014-01-03 20:51:54] Package file tenfoot_fonts_all.zip.7c5db178f5ebe8b1bb02aca53939040358a56342 missing or incorrect size
[2014-01-03 20:51:54] Package file tenfoot_ambientsounds_all.zip.888b796633f8a81789aeb026bc1aa3292d04f989 missing or incorrect size
[2014-01-03 20:51:54] Package file tenfoot_sounds_all.zip.dfec000915d28aa2284cede6bb6249021ce474a1 missing or incorrect size
[2014-01-03 20:51:54] Package file tenfoot_images_all.zip.ef15f8f2fa6c7c9152b540803ba19001925cdefc missing or incorrect size
[2014-01-03 20:51:54] Package file public_all.zip.f438e9103ae90719c872032f9ca5d250b771f36c missing or incorrect size
[2014-01-03 20:51:54] Package file bins_win32.zip.cdb96199cdcb9798b87b6b837de69763903669a0 missing or incorrect size
[2014-01-03 20:51:54] Package file webkit_win32.zip.0836dd556ebe495bc22019dd2cfeeec32117d3eb missing or incorrect size
[2014-01-03 20:51:54] Package file gamesforwindows_win32.zip.8a85da058a00e1d376c21c23939fb2555cbf691f missing or incorrect size
[2014-01-03 20:51:54] Package file backup_win32.zip.23a4b137fe59f37238ad710ebab075dc74f434a3 missing or incorrect size
[2014-01-03 20:51:54] Package file steam_win32.zip.6197abd36a6a19a03cf683944e070184ff732bb1 missing or incorrect size
[2014-01-03 20:51:54] Downloading update (0 of 104,144 KB)...
[2014-01-03 20:51:55] Downloading update (330 of 104,144 KB)...
[2014-01-03 20:51:55] Downloading update (686 of 104,144 KB)...
[2014-01-03 20:51:55] Downloading update (1,042 of 104,144 KB)...
[2014-01-03 20:51:56] Downloading update (1,385 of 104,144 KB)...
[2014-01-03 20:51:56] Downloading update (1,668 of 104,144 KB)...
[2014-01-03 20:51:56] Downloading update (2,021 of 104,144 KB)...
[2014-01-03 20:51:56] Downloading update (2,316 of 104,144 KB)...
[2014-01-03 20:51:57] Downloading update (2,590 of 104,144 KB)...
[2014-01-03 20:51:57] Downloading update (2,949 of 104,144 KB)...
[2014-01-03 20:51:57] Downloading update (3,299 of 104,144 KB)...
[2014-01-03 20:51:57] Downloading update (3,631 of 104,144 KB)...
[2014-01-03 20:51:58] Downloading update (4,029 of 104,144 KB)...
[2014-01-03 20:51:58] Downloading update (4,508 of 104,144 KB)...
[2014-01-03 20:51:58] Downloading update (4,825 of 104,144 KB)...
[2014-01-03 20:51:58] Downloading update (5,228 of 104,144 KB)...
[2014-01-03 20:51:59] Downloading update (5,571 of 104,144 KB)...
[2014-01-03 20:51:59] Downloading update (5,859 of 104,144 KB)...
[2014-01-03 20:51:59] Downloading update (6,288 of 104,144 KB)...
[2014-01-03 20:51:59] Downloading update (6,602 of 104,144 KB)...
[2014-01-03 20:52:00] Downloading update (6,908 of 104,144 KB)...
[2014-01-03 20:52:00] Downloading update (7,280 of 104,144 KB)...
[2014-01-03 20:52:00] Downloading update (7,665 of 104,144 KB)...
[2014-01-03 20:52:00] Downloading update (7,978 of 104,144 KB)...
[2014-01-03 20:52:01] Downloading update (8,299 of 104,144 KB)...
[2014-01-03 20:52:01] Downloading update (8,668 of 104,144 KB)...
[2014-01-03 20:52:01] Downloading update (9,059 of 104,144 KB)...
[2014-01-03 20:52:01] Downloading update (9,445 of 104,144 KB)...
[2014-01-03 20:52:02] Downloading update (9,775 of 104,144 KB)...
[2014-01-03 20:52:02] Downloading update (10,118 of 104,144 KB)...
[2014-01-03 20:52:02] Downloading update (10,473 of 104,144 KB)...
[2014-01-03 20:52:02] Downloading update (10,794 of 104,144 KB)...
[2014-01-03 20:52:03] Downloading update (11,205 of 104,144 KB)...
[2014-01-03 20:52:03] Downloading update (11,560 of 104,144 KB)...
[2014-01-03 20:52:03] Downloading update (11,887 of 104,144 KB)...
[2014-01-03 20:52:03] Downloading update (12,255 of 104,144 KB)...
[2014-01-03 20:52:04] Downloading update (12,603 of 104,144 KB)...
[2014-01-03 20:52:04] Downloading update (12,926 of 104,144 KB)...
[2014-01-03 20:52:04] Downloading update (13,234 of 104,144 KB)...
[2014-01-03 20:52:04] Downloading update (13,619 of 104,144 KB)...
[2014-01-03 20:52:05] Downloading update (14,001 of 104,144 KB)...
[2014-01-03 20:52:05] Downloading update (14,316 of 104,144 KB)...
[2014-01-03 20:52:05] Downloading update (14,653 of 104,144 KB)...
[2014-01-03 20:52:05] Downloading update (15,073 of 104,144 KB)...
[2014-01-03 20:52:06] Downloading update (15,407 of 104,144 KB)...
[2014-01-03 20:52:06] Downloading update (15,767 of 104,144 KB)...
[2014-01-03 20:52:06] Downloading update (16,079 of 104,144 KB)...
[2014-01-03 20:52:06] Downloading update (16,451 of 104,144 KB)...
[2014-01-03 20:52:07] Downloading update (16,790 of 104,144 KB)...
[2014-01-03 20:52:07] Downloading update (17,157 of 104,144 KB)...
[2014-01-03 20:52:07] Downloading update (17,400 of 104,144 KB)...
[2014-01-03 20:52:07] Downloading update (17,805 of 104,144 KB)...
[2014-01-03 20:52:08] Downloading update (18,212 of 104,144 KB)...
[2014-01-03 20:52:08] Downloading update (18,538 of 104,144 KB)...
[2014-01-03 20:52:08] Downloading update (18,922 of 104,144 KB)...
[2014-01-03 20:52:08] Downloading update (19,271 of 104,144 KB)...
[2014-01-03 20:52:09] Downloading update (19,623 of 104,144 KB)...
[2014-01-03 20:52:09] Downloading update (19,967 of 104,144 KB)...
[2014-01-03 20:52:09] Downloading update (20,377 of 104,144 KB)...
[2014-01-03 20:52:10] Downloading update (20,736 of 104,144 KB)...
[2014-01-03 20:52:10] Downloading update (21,105 of 104,144 KB)...
[2014-01-03 20:52:10] Downloading update (21,403 of 104,144 KB)...
[2014-01-03 20:52:10] Downloading update (21,819 of 104,144 KB)...
[2014-01-03 20:52:11] Downloading update (22,162 of 104,144 KB)...
[2014-01-03 20:52:11] Downloading update (22,512 of 104,144 KB)...
[2014-01-03 20:52:11] Downloading update (22,879 of 104,144 KB)...
[2014-01-03 20:52:11] Downloading update (23,242 of 104,144 KB)...
[2014-01-03 20:52:12] Downloading update (23,565 of 104,144 KB)...
[2014-01-03 20:52:12] Downloading update (23,943 of 104,144 KB)...
[2014-01-03 20:52:12] Downloading update (24,271 of 104,144 KB)...
[2014-01-03 20:52:13] Downloading update (25,042 of 104,144 KB)...
[2014-01-03 20:52:13] Downloading update (25,427 of 104,144 KB)...
[2014-01-03 20:52:13] Downloading update (25,750 of 104,144 KB)...
[2014-01-03 20:52:13] Downloading update (26,112 of 104,144 KB)...
[2014-01-03 20:52:14] Downloading update (26,465 of 104,144 KB)...
[2014-01-03 20:52:14] Downloading update (26,810 of 104,144 KB)...
[2014-01-03 20:52:14] Downloading update (27,179 of 104,144 KB)...
[2014-01-03 20:52:14] Downloading update (27,522 of 104,144 KB)...
[2014-01-03 20:52:15] Downloading update (27,868 of 104,144 KB)...
[2014-01-03 20:52:15] Downloading update (28,178 of 104,144 KB)...
[2014-01-03 20:52:15] Downloading update (28,566 of 104,144 KB)...
[2014-01-03 20:52:15] Downloading update (28,931 of 104,144 KB)...
[2014-01-03 20:52:16] Downloading update (29,277 of 104,144 KB)...
[2014-01-03 20:52:16] Downloading update (29,638 of 104,144 KB)...
[2014-01-03 20:52:16] Downloading update (30,035 of 104,144 KB)...
[2014-01-03 20:52:16] Downloading update (30,417 of 104,144 KB)...
[2014-01-03 20:52:17] Downloading update (30,752 of 104,144 KB)...
[2014-01-03 20:52:17] Downloading update (31,117 of 104,144 KB)...
[2014-01-03 20:52:17] Downloading update (31,467 of 104,144 KB)...
[2014-01-03 20:52:17] Downloading update (31,813 of 104,144 KB)...
[2014-01-03 20:52:18] Downloading update (32,138 of 104,144 KB)...
[2014-01-03 20:52:18] Downloading update (32,518 of 104,144 KB)...
[2014-01-03 20:52:18] Downloading update (32,869 of 104,144 KB)...
[2014-01-03 20:52:18] Downloading update (33,218 of 104,144 KB)...
[2014-01-03 20:52:19] Downloading update (33,552 of 104,144 KB)...
[2014-01-03 20:52:19] Downloading update (33,926 of 104,144 KB)...
[2014-01-03 20:52:19] Downloading update (34,252 of 104,144 KB)...
[2014-01-03 20:52:19] Downloading update (34,619 of 104,144 KB)...
[2014-01-03 20:52:20] Downloading update (34,977 of 104,144 KB)...
[2014-01-03 20:52:20] Downloading update (35,347 of 104,144 KB)...
[2014-01-03 20:52:20] Downloading update (35,690 of 104,144 KB)...
[2014-01-03 20:52:20] Downloading update (36,029 of 104,144 KB)...
[2014-01-03 20:52:21] Downloading update (36,372 of 104,144 KB)...
[2014-01-03 20:52:21] Downloading update (36,749 of 104,144 KB)...
[2014-01-03 20:52:21] Downloading update (37,099 of 104,144 KB)...
[2014-01-03 20:52:21] Downloading update (37,457 of 104,144 KB)...
[2014-01-03 20:52:22] Downloading update (37,804 of 104,144 KB)...
[2014-01-03 20:52:22] Downloading update (38,144 of 104,144 KB)...
[2014-01-03 20:52:22] Downloading update (38,482 of 104,144 KB)...
[2014-01-03 20:52:22] Downloading update (38,838 of 104,144 KB)...
[2014-01-03 20:52:23] Downloading update (39,216 of 104,144 KB)...
[2014-01-03 20:52:23] Downloading update (39,558 of 104,144 KB)...
[2014-01-03 20:52:23] Downloading update (39,917 of 104,144 KB)...
[2014-01-03 20:52:24] Downloading update (40,252 of 104,144 KB)...
[2014-01-03 20:52:24] Downloading update (40,730 of 104,144 KB)...
[2014-01-03 20:52:24] Downloading update (41,071 of 104,144 KB)...
[2014-01-03 20:52:24] Downloading update (41,429 of 104,144 KB)...
[2014-01-03 20:52:25] Downloading update (41,765 of 104,144 KB)...
[2014-01-03 20:52:25] Downloading update (42,131 of 104,144 KB)...
[2014-01-03 20:52:25] Downloading update (42,470 of 104,144 KB)...
[2014-01-03 20:52:25] Downloading update (42,809 of 104,144 KB)...
[2014-01-03 20:52:26] Downloading update (43,154 of 104,144 KB)...
[2014-01-03 20:52:26] Downloading update (43,532 of 104,144 KB)...
[2014-01-03 20:52:26] Downloading update (43,812 of 104,144 KB)...
[2014-01-03 20:52:26] Downloading update (44,232 of 104,144 KB)...
[2014-01-03 20:52:27] Downloading update (44,574 of 104,144 KB)...
[2014-01-03 20:52:27] Downloading update (44,890 of 104,144 KB)...
[2014-01-03 20:52:27] Downloading update (45,247 of 104,144 KB)...
[2014-01-03 20:52:27] Downloading update (45,633 of 104,144 KB)...
[2014-01-03 20:52:28] Downloading update (45,989 of 104,144 KB)...
[2014-01-03 20:52:28] Downloading update (46,347 of 104,144 KB)...
[2014-01-03 20:52:28] Downloading update (46,809 of 104,144 KB)...
[2014-01-03 20:52:28] Downloading update (47,166 of 104,144 KB)...
[2014-01-03 20:52:29] Downloading update (47,545 of 104,144 KB)...
[2014-01-03 20:52:29] Downloading update (47,875 of 104,144 KB)...
[2014-01-03 20:52:29] Downloading update (48,237 of 104,144 KB)...
[2014-01-03 20:52:29] Downloading update (48,578 of 104,144 KB)...
[2014-01-03 20:52:30] Downloading update (48,953 of 104,144 KB)...
[2014-01-03 20:52:30] Downloading update (49,286 of 104,144 KB)...
[2014-01-03 20:52:30] Downloading update (49,598 of 104,144 KB)...
[2014-01-03 20:52:30] Downloading update (50,004 of 104,144 KB)...
[2014-01-03 20:52:31] Downloading update (50,343 of 104,144 KB)...
[2014-01-03 20:52:31] Downloading update (50,705 of 104,144 KB)...
[2014-01-03 20:52:31] Downloading update (51,043 of 104,144 KB)...
[2014-01-03 20:52:31] Downloading update (51,411 of 104,144 KB)...
[2014-01-03 20:52:32] Downloading update (51,749 of 104,144 KB)...
[2014-01-03 20:52:32] Downloading update (52,105 of 104,144 KB)...
[2014-01-03 20:52:32] Downloading update (52,463 of 104,144 KB)...
[2014-01-03 20:52:32] Downloading update (52,783 of 104,144 KB)...
[2014-01-03 20:52:33] Downloading update (53,156 of 104,144 KB)...
[2014-01-03 20:52:33] Downloading update (53,512 of 104,144 KB)...
[2014-01-03 20:52:33] Downloading update (53,851 of 104,144 KB)...
[2014-01-03 20:52:33] Downloading update (54,207 of 104,144 KB)...
[2014-01-03 20:52:34] Downloading update (54,572 of 104,144 KB)...
[2014-01-03 20:52:34] Downloading update (54,921 of 104,144 KB)...
[2014-01-03 20:52:34] Downloading update (55,260 of 104,144 KB)...
[2014-01-03 20:52:34] Downloading update (55,618 of 104,144 KB)...
[2014-01-03 20:52:35] Downloading update (55,974 of 104,144 KB)...
[2014-01-03 20:52:35] Downloading update (56,300 of 104,144 KB)...
[2014-01-03 20:52:35] Downloading update (56,675 of 104,144 KB)...
[2014-01-03 20:52:35] Downloading update (56,974 of 104,144 KB)...
[2014-01-03 20:52:36] Downloading update (57,376 of 104,144 KB)...
[2014-01-03 20:52:36] Downloading update (57,717 of 104,144 KB)...
[2014-01-03 20:52:36] Downloading update (58,042 of 104,144 KB)...
[2014-01-03 20:52:36] Downloading update (58,432 of 104,144 KB)...
[2014-01-03 20:52:37] Downloading update (58,777 of 104,144 KB)...
[2014-01-03 20:52:37] Downloading update (59,104 of 104,144 KB)...
[2014-01-03 20:52:37] Downloading update (59,482 of 104,144 KB)...
[2014-01-03 20:52:37] Downloading update (59,819 of 104,144 KB)...
[2014-01-03 20:52:38] Downloading update (60,178 of 104,144 KB)...
[2014-01-03 20:52:38] Downloading update (60,516 of 104,144 KB)...
[2014-01-03 20:52:38] Downloading update (60,891 of 104,144 KB)...
[2014-01-03 20:52:38] Downloading update (61,242 of 104,144 KB)...
[2014-01-03 20:52:39] Downloading update (61,586 of 104,144 KB)...
[2014-01-03 20:52:39] Downloading update (61,926 of 104,144 KB)...
[2014-01-03 20:52:39] Downloading update (62,278 of 104,144 KB)...
[2014-01-03 20:52:39] Downloading update (62,624 of 104,144 KB)...
[2014-01-03 20:52:40] Downloading update (62,974 of 104,144 KB)...
[2014-01-03 20:52:40] Downloading update (63,345 of 104,144 KB)...
[2014-01-03 20:52:40] Downloading update (63,687 of 104,144 KB)...
[2014-01-03 20:52:40] Downloading update (63,997 of 104,144 KB)...
[2014-01-03 20:52:41] Downloading update (64,393 of 104,144 KB)...
[2014-01-03 20:52:41] Downloading update (64,728 of 104,144 KB)...
[2014-01-03 20:52:41] Downloading update (65,109 of 104,144 KB)...
[2014-01-03 20:52:41] Downloading update (65,433 of 104,144 KB)...
[2014-01-03 20:52:42] Downloading update (65,794 of 104,144 KB)...
[2014-01-03 20:52:42] Downloading update (66,131 of 104,144 KB)...
[2014-01-03 20:52:42] Downloading update (66,510 of 104,144 KB)...
[2014-01-03 20:52:43] Downloading update (66,943 of 104,144 KB)...
[2014-01-03 20:52:43] Downloading update (67,303 of 104,144 KB)...
[2014-01-03 20:52:43] Downloading update (67,633 of 104,144 KB)...
[2014-01-03 20:52:43] Downloading update (68,004 of 104,144 KB)...
[2014-01-03 20:52:44] Downloading update (68,350 of 104,144 KB)...
[2014-01-03 20:52:44] Downloading update (68,710 of 104,144 KB)...
[2014-01-03 20:52:44] Downloading update (69,027 of 104,144 KB)...
[2014-01-03 20:52:44] Downloading update (69,403 of 104,144 KB)...
[2014-01-03 20:52:45] Downloading update (69,762 of 104,144 KB)...
[2014-01-03 20:52:45] Downloading update (70,100 of 104,144 KB)...
[2014-01-03 20:52:45] Downloading update (70,438 of 104,144 KB)...
[2014-01-03 20:52:45] Downloading update (70,811 of 104,144 KB)...
[2014-01-03 20:52:46] Downloading update (71,168 of 104,144 KB)...
[2014-01-03 20:52:46] Downloading update (71,479 of 104,144 KB)...
[2014-01-03 20:52:46] Downloading update (71,841 of 104,144 KB)...
[2014-01-03 20:52:46] Downloading update (72,217 of 104,144 KB)...
[2014-01-03 20:52:47] Downloading update (72,562 of 104,144 KB)...
[2014-01-03 20:52:47] Downloading update (72,870 of 104,144 KB)...
[2014-01-03 20:52:47] Downloading update (73,270 of 104,144 KB)...
[2014-01-03 20:52:47] Downloading update (73,626 of 104,144 KB)...
[2014-01-03 20:52:48] Downloading update (73,964 of 104,144 KB)...
[2014-01-03 20:52:48] Downloading update (74,308 of 104,144 KB)...
[2014-01-03 20:52:48] Downloading update (74,679 of 104,144 KB)...
[2014-01-03 20:52:48] Downloading update (75,031 of 104,144 KB)...
[2014-01-03 20:52:49] Downloading update (75,373 of 104,144 KB)...
[2014-01-03 20:52:49] Downloading update (75,729 of 104,144 KB)...
[2014-01-03 20:52:49] Downloading update (76,085 of 104,144 KB)...
[2014-01-03 20:52:49] Downloading update (76,455 of 104,144 KB)...
[2014-01-03 20:52:50] Downloading update (76,801 of 104,144 KB)...
[2014-01-03 20:52:50] Downloading update (77,159 of 104,144 KB)...
[2014-01-03 20:52:50] Downloading update (77,515 of 104,144 KB)...
[2014-01-03 20:52:50] Downloading update (77,873 of 104,144 KB)...
[2014-01-03 20:52:51] Downloading update (78,225 of 104,144 KB)...
[2014-01-03 20:52:51] Downloading update (78,565 of 104,144 KB)...
[2014-01-03 20:52:51] Downloading update (78,918 of 104,144 KB)...
[2014-01-03 20:52:51] Downloading update (79,206 of 104,144 KB)...
[2014-01-03 20:52:52] Downloading update (79,544 of 104,144 KB)...
[2014-01-03 20:52:52] Downloading update (79,709 of 104,144 KB)...
[2014-01-03 20:52:52] Downloading update (80,001 of 104,144 KB)...
[2014-01-03 20:52:52] Downloading update (80,221 of 104,144 KB)...
[2014-01-03 20:52:53] Downloading update (80,572 of 104,144 KB)...
[2014-01-03 20:52:53] Downloading update (80,928 of 104,144 KB)...
[2014-01-03 20:52:53] Downloading update (81,160 of 104,144 KB)...
[2014-01-03 20:52:53] Downloading update (81,451 of 104,144 KB)...
[2014-01-03 20:52:54] Downloading update (81,771 of 104,144 KB)...
[2014-01-03 20:52:54] Downloading update (82,099 of 104,144 KB)...
[2014-01-03 20:52:54] Downloading update (82,434 of 104,144 KB)...
[2014-01-03 20:52:54] Downloading update (82,784 of 104,144 KB)...
[2014-01-03 20:52:55] Downloading update (83,126 of 104,144 KB)...
[2014-01-03 20:52:55] Downloading update (83,475 of 104,144 KB)...
[2014-01-03 20:52:55] Downloading update (83,818 of 104,144 KB)...
[2014-01-03 20:52:55] Downloading update (84,121 of 104,144 KB)...
[2014-01-03 20:52:56] Downloading update (84,402 of 104,144 KB)...
[2014-01-03 20:52:56] Downloading update (84,765 of 104,144 KB)...
[2014-01-03 20:52:56] Downloading update (85,053 of 104,144 KB)...
[2014-01-03 20:52:56] Downloading update (85,411 of 104,144 KB)...
[2014-01-03 20:52:57] Downloading update (85,740 of 104,144 KB)...
[2014-01-03 20:52:57] Downloading update (86,089 of 104,144 KB)...
[2014-01-03 20:52:57] Downloading update (86,323 of 104,144 KB)...
[2014-01-03 20:52:57] Downloading update (86,695 of 104,144 KB)...
[2014-01-03 20:52:58] Downloading update (87,020 of 104,144 KB)...
[2014-01-03 20:52:58] Downloading update (87,343 of 104,144 KB)...
[2014-01-03 20:52:58] Downloading update (87,699 of 104,144 KB)...
[2014-01-03 20:52:58] Downloading update (88,048 of 104,144 KB)...
[2014-01-03 20:52:59] Downloading update (88,382 of 104,144 KB)...
[2014-01-03 20:52:59] Downloading update (88,723 of 104,144 KB)...
[2014-01-03 20:52:59] Downloading update (88,966 of 104,144 KB)...
[2014-01-03 20:52:59] Downloading update (89,283 of 104,144 KB)...
[2014-01-03 20:53:00] Downloading update (89,476 of 104,144 KB)...
[2014-01-03 20:53:00] Downloading update (89,658 of 104,144 KB)...
[2014-01-03 20:53:00] Downloading update (90,008 of 104,144 KB)...
[2014-01-03 20:53:00] Downloading update (90,356 of 104,144 KB)...
[2014-01-03 20:53:01] Downloading update (90,634 of 104,144 KB)...
[2014-01-03 20:53:01] Downloading update (90,935 of 104,144 KB)...
[2014-01-03 20:53:01] Downloading update (91,251 of 104,144 KB)...
[2014-01-03 20:53:01] Downloading update (91,584 of 104,144 KB)...
[2014-01-03 20:53:02] Downloading update (91,904 of 104,144 KB)...
[2014-01-03 20:53:02] Downloading update (92,243 of 104,144 KB)...
[2014-01-03 20:53:02] Downloading update (92,568 of 104,144 KB)...
[2014-01-03 20:53:02] Downloading update (92,896 of 104,144 KB)...
[2014-01-03 20:53:03] Downloading update (93,253 of 104,144 KB)...
[2014-01-03 20:53:03] Downloading update (93,589 of 104,144 KB)...
[2014-01-03 20:53:03] Downloading update (93,951 of 104,144 KB)...
[2014-01-03 20:53:03] Downloading update (94,286 of 104,144 KB)...
[2014-01-03 20:53:04] Downloading update (94,635 of 104,144 KB)...
[2014-01-03 20:53:04] Downloading update (95,072 of 104,144 KB)...
[2014-01-03 20:53:04] Downloading update (95,575 of 104,144 KB)...
[2014-01-03 20:53:05] Downloading update (95,908 of 104,144 KB)...
[2014-01-03 20:53:05] Downloading update (96,271 of 104,144 KB)...
[2014-01-03 20:53:05] Downloading update (96,613 of 104,144 KB)...
[2014-01-03 20:53:05] Downloading update (96,962 of 104,144 KB)...
[2014-01-03 20:53:06] Downloading update (97,144 of 104,144 KB)...
[2014-01-03 20:53:06] Downloading update (97,425 of 104,144 KB)...
[2014-01-03 20:53:06] Downloading update (97,768 of 104,144 KB)...
[2014-01-03 20:53:06] Downloading update (98,093 of 104,144 KB)...
[2014-01-03 20:53:07] Downloading update (98,429 of 104,144 KB)...
[2014-01-03 20:53:07] Downloading update (98,652 of 104,144 KB)...
[2014-01-03 20:53:07] Downloading update (98,807 of 104,144 KB)...
[2014-01-03 20:53:07] Downloading update (98,893 of 104,144 KB)...
[2014-01-03 20:53:08] Downloading update (99,058 of 104,144 KB)...
[2014-01-03 20:53:08] Downloading update (99,381 of 104,144 KB)...
[2014-01-03 20:53:08] Downloading update (99,700 of 104,144 KB)...
[2014-01-03 20:53:08] Downloading update (100,018 of 104,144 KB)...
[2014-01-03 20:53:09] Downloading update (100,304 of 104,144 KB)...
[2014-01-03 20:53:09] Downloading update (100,567 of 104,144 KB)...
[2014-01-03 20:53:09] Downloading update (100,909 of 104,144 KB)...
[2014-01-03 20:53:09] Downloading update (101,197 of 104,144 KB)...
[2014-01-03 20:53:10] Downloading update (101,532 of 104,144 KB)...
[2014-01-03 20:53:10] Downloading update (101,866 of 104,144 KB)...
[2014-01-03 20:53:10] Downloading update (102,224 of 104,144 KB)...
[2014-01-03 20:53:10] Downloading update (102,579 of 104,144 KB)...
[2014-01-03 20:53:11] Downloading update (102,913 of 104,144 KB)...
[2014-01-03 20:53:11] Downloading update (103,262 of 104,144 KB)...
[2014-01-03 20:53:11] Downloading update (103,612 of 104,144 KB)...
[2014-01-03 20:53:11] Downloading update (103,964 of 104,144 KB)...
[2014-01-03 20:53:12] Downloading update (104,144 of 104,144 KB)...
[2014-01-03 20:53:12] Download complete.
[2014-01-03 20:53:12] uninstalled manifest found in C:\Program Files\Steam\package\steam_client_win32 (1).
[2014-01-03 20:53:12] Extracting package...
[2014-01-03 20:53:19] Installing update...
[2014-01-03 20:53:22] Failed to clean up after update, continuing...
[2014-01-03 20:53:22] Cleaning up...
[2014-01-03 20:53:22] Update complete, launching Steam...
[2014-01-03 20:53:22] Shutdown
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f005c90, 0x3f03ab30, 0x3f03ab28
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f005c90, 0x3f03ab68, 0x3f03ab60
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f005c90, 0x3f03aaf8, 0x3f03aaf0
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f005c90, 0x3f03aba0, 0x3f03ab98
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f005c90, 0x3f03abd8, 0x3f03abd0
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f005c90, 0x3f03ab30, 0x3f03ab28
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f005c90, 0x3f03ab68, 0x3f03ab60
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f005c90, 0x3f03aaf8, 0x3f03aaf0
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f005c90, 0x3f03aba0, 0x3f03ab98
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f005c90, 0x3f03abd8, 0x3f03abd0
fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub.
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
[0103/205335:ERROR:resource_bundle.cc(417)] Failed to load C:\Program Files\Steam\bin\chrome.pak
Some features may not be available.
fixme:iphlpapi:NotifyAddrChange (Handle 0x1add508, overlapped 0x1866f38): stub
fixme:winsock:WSALookupServiceBeginW (0x1add608 0x00000ff0 0x1add650) Stub!
[0103/205335:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_HANDLE_INFORMATION
fixme:win:RegisterDeviceNotificationA (hwnd=0x30090, filter=0x7a1e52c,flags=0x00000000) returns a fake device notification handle!
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7c9a3e98, 0x7ae3d00, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7c9a3e98
err:wbemprox:wql_error syntax error, unexpected TK_NOT
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7c9a3e98, 0x7ae3d28, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7c9a3e98
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:win:RegisterDeviceNotificationA (hwnd=0x100cc, filter=0x33de40,flags=0x00000004) returns a fake device notification handle!
fixme:win:EnumDisplayDevicesW ((null),0,0x33d308,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33d318,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33d4c0,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x33d4c0,0x00000000), stub!
fixme:win:RegisterDeviceNotificationW (hwnd=0x10122, filter=0xb2ce9b0,flags=0x00000000) returns a fake device notification handle!
fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
fixme:win:RegisterDeviceNotificationW (hwnd=0x20122, filter=0xb2ce9b0,flags=0x00000000) returns a fake device notification handle!
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=(nil)): stub
fixme:appbar:SHAppBarMessage unknown msg: 4
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETSTATE): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=3): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=1): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=0): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=2): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=(nil)): stub
fixme:appbar:SHAppBarMessage unknown msg: 4
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETSTATE): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=3): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=1): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=0): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=2): stub
fixme:winsock:WSALookupServiceBeginW (0x612e370 0x00000ff0 0x612e3b8) Stub!
[0103/205546:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
fixme:winsock:WSALookupServiceBeginW (0x612e370 0x00000ff0 0x612e3b8) Stub!
[0103/205554:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
fixme:winsock:WSALookupServiceBeginW (0x612e370 0x00000ff0 0x612e3b8) Stub!
[0103/205627:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
[0103/205825:ERROR:reference_audio_renderer.cc(46)] NOT IMPLEMENTED
[0103/205825:ERROR:reference_audio_renderer.cc(50)] NOT IMPLEMENTED
fixme:winsock:WSALookupServiceBeginW (0x612e370 0x00000ff0 0x612e3b8) Stub!
[0103/205842:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
[0103/205842:ERROR:reference_audio_renderer.cc(54)] NOT IMPLEMENTED
[0103/205843:ERROR:reference_audio_renderer.cc(46)] NOT IMPLEMENTED
[0103/205843:ERROR:reference_audio_renderer.cc(50)] NOT IMPLEMENTED
[0103/205847:ERROR:reference_audio_renderer.cc(54)] NOT IMPLEMENTED
[0103/205847:ERROR:reference_audio_renderer.cc(46)] NOT IMPLEMENTED
fixme:winsock:WSALookupServiceBeginW (0x612e370 0x00000ff0 0x612e3b8) Stub!
[0103/205850:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
[0103/205850:ERROR:reference_audio_renderer.cc(50)] NOT IMPLEMENTED
fixme:winsock:WSALookupServiceBeginW (0x612e370 0x00000ff0 0x612e3b8) Stub!
[0103/205858:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
fixme:winsock:WSALookupServiceBeginW (0x612e370 0x00000ff0 0x612e3b8) Stub!
[0103/210119:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
[0103/210132:ERROR:reference_audio_renderer.cc(54)] NOT IMPLEMENTED
fixme:volume:GetVolumePathNameW (L"\\\\?\\C:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\D:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\E:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\F:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\G:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\H:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\I:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\J:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\K:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\L:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\M:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\N:\\", 0x33dcf4, 260), stub!
fixme:volume:GetVolumePathNameW (L"\\\\?\\Z:\\", 0x33dcf4, 260), stub!
err:ole:RevokeDragDrop invalid hwnd 0x10140
fixme:winsock:WSALookupServiceBeginW (0x612e370 0x00000ff0 0x612e3b8) Stub!
[0103/210333:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
fixme:font:RemoveFontMemResourceEx (0x914a82d1) stub
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0xaf86588, L"C:\\Program Files\\Steam\\steamapps\\common\\Age Of Empires 3\\bin\\age3.exe"
fixme:hnetcfg:fw_app_put_Name 0xaf86588, L"Age of Empires\00ae III: Complete Collection"
fixme:hnetcfg:fw_apps_Add 0x165ad220, 0xaf86588
err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered
err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x165ad220, L"C:\\Program Files\\Steam\\steamapps\\common\\Age Of Empires 3\\bin\\age3x.exe"
fixme:hnetcfg:fw_app_put_Name 0x165ad220, L"Age of Empires\00ae III: Complete Collection"
fixme:hnetcfg:fw_apps_Add 0x241e6d8, 0x165ad220
err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered
err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x241e6d8, L"C:\\Program Files\\Steam\\steamapps\\common\\Age Of Empires 3\\bin\\age3y.exe"
fixme:hnetcfg:fw_app_put_Name 0x241e6d8, L"Age of Empires\00ae III: Complete Collection"
fixme:hnetcfg:fw_apps_Add 0xaf86588, 0x241e6d8
err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered
err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
fixme:win:UnregisterDeviceNotification (handle=0xcafecafe), STUB!
fixme:win:UnregisterDeviceNotification (handle=0xcafecafe), STUB!
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x1866f38): stub
err:ole:RevokeDragDrop invalid hwnd 0x20080
err:ole:RevokeDragDrop invalid hwnd 0x2007e
err:ole:RevokeDragDrop invalid hwnd 0x2007c
err:ole:RevokeDragDrop invalid hwnd 0x2007a
err:ole:RevokeDragDrop invalid hwnd 0x20078
err:ole:RevokeDragDrop invalid hwnd 0x3006c
err:ole:RevokeDragDrop invalid hwnd 0x20074
err:ole:RevokeDragDrop invalid hwnd 0x3006e
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
Shutting down. . .
[2014-01-03 20:53:25] Startup - updater built Dec 11 2013 10:59:04
[2014-01-03 20:53:26] Verifying installation...
[2014-01-03 20:53:26] Verification complete
[2014-01-03 21:41:33] Background update loop checking for update. . .
[2014-01-03 21:41:33] Checking for available updates...
[2014-01-03 21:41:33] Download skipped: /client/steam_client_win32 version 1386799583, installed version 1386799583
[2014-01-03 21:41:33] Nothing to do
[2014-01-03 21:56:29] Shutdown
[01/03/14 22:00:14] - Running wine-1.7.9 Age3Launcher.exe (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/Program Files/Steam/SteamApps/common/Age Of Empires 3/bin)
[01/03/14 22:00:41] - Running wine-1.7.9 Steam.exe (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/Program Files/Steam)
[0103/220043:ERROR:resource_bundle.cc(417)] Failed to load C:\Program Files\Steam\bin\chrome.pak
Some features may not be available.
[0103/220044:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
[0103/220057:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
[0103/220105:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
Install script executed.Install script executed.Shutting down. . .
[2014-01-03 22:00:42] Startup - updater built Dec 11 2013 10:59:04
[2014-01-03 22:00:42] Verifying installation...
[2014-01-03 22:00:43] Verification complete
[2014-01-03 22:10:48] Shutdown
[01/03/14 22:11:09] - Running wine-1.7.9 winecfg (Working directory : /home/steve7233/.PlayOnLinux)
[01/03/14 22:11:52] - Running wine-1.7.9 Age3Launcher.exe (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/Program Files/Steam/SteamApps/common/Age Of Empires 3/bin)
[01/03/14 22:29:29] - ----- Starting function POL_Install_amstream -----
[01/03/14 22:29:33] - Running wine-1.7.9 regsvr32 amstream.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL amstream.dll
[01/03/14 22:29:34] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources)
[01/03/14 22:29:34] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*amstream"="native"
-----------
[01/03/14 22:29:34] - ----- Ending function POL_Install_amstream -----
[01/03/14 22:29:56] - ----- Starting function POL_Install_devenum -----
[01/03/14 22:29:57] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/devenum)
[01/03/14 22:29:57] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*devenum"="native,builtin"
-----------
[01/03/14 22:29:58] - ----- Ending function POL_Install_devenum -----
[01/03/14 22:30:20] - ----- Starting function POL_Install_dotnet20sp2 -----
[01/03/14 22:30:21] - ----- Starting function POL_Install_dotnet20sp1 -----
[01/03/14 22:30:22] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/regkey.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:22] - Content of /home/steve7233/.PlayOnLinux//tmp/regkey.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine]
"Version"="win2k"
-----------
[01/03/14 22:30:22] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/setos.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:22] - Content of /home/steve7233/.PlayOnLinux//tmp/setos.reg
-----------
REGEDIT4

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
"CSDVersion"="Service Pack 4"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows]
"CSDVersion"=dword:00000400
-----------
[01/03/14 22:30:22] - Running wine-1.7.9 regedit dotnet20sp1_fix.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:22] - Content of dotnet20sp1_fix.reg
-----------
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
"ProductName"="Microsoft Windows 2000"
"CSDVersion"="Service Pack 4"
"CurrentVersion"="5.0"
"CurrentBuildNumber"="2195"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows]
"CSDVersion"=dword:00000400
-----------
[01/03/14 22:30:23] - Running wine-1.7.9 reg add HKLM\Software\Microsoft\NET Framework Setup\NDP\v2.0.50727 /v Version /t REG_SZ /d 2.0.50727 /f (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
ADD - HKLM\Software\Microsoft\NET Framework Setup\NDP\v2.0.50727 Version 0 REG_SZ 2.0.50727 1
The operation completed successfully
[01/03/14 22:30:24] - Running wine-1.7.9 NetFx20SP1_x86.exe /q /c:install.exe /q (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
Could not parse file "/home/steve7233/.local/share/applications/wine-Programs-Turbine-The Lord of the Rings Online-The Lord of the Rings Online.desktop": Invalid key name: Path[$e]
Could not parse file "/home/steve7233/.local/share/applications/Civilization V.desktop": Invalid key name: Path[$e]
fixme:clusapi:GetNodeClusterState ((null),0x33ebf4) stub!
fixme:advapi:DecryptFileA ("c:\\8fefbd6e70847573a3033540261176ad\\", 00000000): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
[01/03/14 22:30:26] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/regkey.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:26] - Content of /home/steve7233/.PlayOnLinux//tmp/regkey.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine]
"Version"="winxp"
-----------
[01/03/14 22:30:27] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/setos.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:27] - Content of /home/steve7233/.PlayOnLinux//tmp/setos.reg
-----------
REGEDIT4

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
"CSDVersion"="Service Pack 3"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows]
"CSDVersion"=dword:00000300
-----------
[01/03/14 22:30:27] - Running wine-1.7.9 regedit Default_OS_Version.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:27] - Content of Default_OS_Version.reg
-----------
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
"ProductName"="Microsoft Windows XP"
"CSDVersion"="Service Pack 3"
"CurrentVersion"="5.3"
"CurrentBuildNumber"="2600"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows]
"CSDVersion"=dword:00000300
-----------
[01/03/14 22:30:27] - ----- Ending function POL_Install_dotnet20sp1 -----
[01/03/14 22:30:28] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/regkey.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:28] - Content of /home/steve7233/.PlayOnLinux//tmp/regkey.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine]
"Version"="win2k"
-----------
[01/03/14 22:30:28] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/setos.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:28] - Content of /home/steve7233/.PlayOnLinux//tmp/setos.reg
-----------
REGEDIT4

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
"CSDVersion"="Service Pack 4"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows]
"CSDVersion"=dword:00000400
-----------
[01/03/14 22:30:28] - Running wine-1.7.9 regedit dotnet20sp2_fix.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:28] - Content of dotnet20sp2_fix.reg
-----------
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
"ProductName"="Microsoft Windows 2000"
"CSDVersion"="Service Pack 4"
"CurrentVersion"="5.0"
"CurrentBuildNumber"="2195"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows]
"CSDVersion"=dword:00000400
-----------
[01/03/14 22:30:28] - Running wine-1.7.9 reg add HKLM\Software\Microsoft\Net Framework Setup\NDP\v2.0.50727 /v Version /d 2.0.50727 /f (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
ADD - HKLM\Software\Microsoft\Net Framework Setup\NDP\v2.0.50727 Version 0 (null) 2.0.50727 1
The operation completed successfully
[01/03/14 22:30:29] - Running wine-1.7.9 NetFx20SP2_x86.exe /q /c:install.exe /q (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
fixme:clusapi:GetNodeClusterState ((null),0x33ebf4) stub!
fixme:advapi:DecryptFileA ("c:\\71832b1513f834377288\\", 00000000): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
[01/03/14 22:30:32] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/regkey.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:32] - Content of /home/steve7233/.PlayOnLinux//tmp/regkey.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine]
"Version"="winxp"
-----------
[01/03/14 22:30:32] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/setos.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:32] - Content of /home/steve7233/.PlayOnLinux//tmp/setos.reg
-----------
REGEDIT4

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
"CSDVersion"="Service Pack 3"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows]
"CSDVersion"=dword:00000300
-----------
[01/03/14 22:30:32] - Running wine-1.7.9 regedit Default_OS_Version.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dotnet20)
[01/03/14 22:30:32] - Content of Default_OS_Version.reg
-----------
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
"ProductName"="Microsoft Windows XP"
"CSDVersion"="Service Pack 3"
"CurrentVersion"="5.3"
"CurrentBuildNumber"="2600"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows]
"CSDVersion"=dword:00000300
-----------
[01/03/14 22:30:33] - ----- Ending function POL_Install_dotnet20sp2 -----
[01/03/14 22:30:52] - ----- Starting function POL_Install_ffdshow -----
[01/03/14 22:30:58] - Running wine-1.7.9 ffdshow_beta7_rev3154_20091209.exe /silent (Working directory : /home/steve7233/.PlayOnLinux/ressources)
fixme:msg:ChangeWindowMessageFilter c057 00000001
fixme:win:DisableProcessWindowsGhosting : stub
fixme:explorerframe:taskbar_list_SetProgressValue iface 0x167430, hwnd 0x1007a, ullCompleted 0, ullTotal 10a5309 stub!
fixme:sfc:SfcIsFileProtected ((nil), L"C:\\Program Files\\ffdshow\\unins000.exe") stub
fixme:explorerframe:taskbar_list_SetProgressState iface 0x167430, hwnd 0x1007a, flags 0 stub!
[01/03/14 22:31:03] - ----- Ending function POL_Install_ffdshow -----
[01/03/14 22:31:28] - ----- Starting function POL_Install_msxml4 -----
[01/03/14 22:31:31] - Running wine-1.7.9 msiexec /i msxml.msi /q (Working directory : /home/steve7233/.PlayOnLinux/ressources)
fixme:storage:create_storagefile Storage share mode not implemented.
[01/03/14 22:31:32] - ----- Ending function POL_Install_msxml4 -----
[01/03/14 22:31:44] - ----- Starting function POL_Install_quartz -----
[01/03/14 22:31:46] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/quartz)
[01/03/14 22:31:46] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*quartz"="native,builtin"
-----------
[01/03/14 22:31:47] - Running wine-1.7.9 regsvr32 quartz.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources/quartz)
Successfully registered DLL quartz.dll
[01/03/14 22:31:47] - ----- Ending function POL_Install_quartz -----
[01/03/14 22:32:12] - ----- Starting function POL_Install_riched30 -----
[01/03/14 22:32:12] - ----- Starting function POL_Install_riched20 -----
[01/03/14 22:32:13] - ----- Starting function POL_SP2_Extract -----
[01/03/14 22:32:24] - ----- Ending function POL_SP2_Extract -----
[01/03/14 22:32:24] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/tmp)
[01/03/14 22:32:24] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*riched20"="native,builtin"
-----------
[01/03/14 22:32:25] - ----- Ending function POL_Install_riched20 -----
[01/03/14 22:32:25] - ----- Ending function POL_Install_riched30 -----
[01/03/14 22:32:43] - ----- Starting function POL_Install_vcrun2010 -----
[01/03/14 22:32:43] - Running wine-1.7.9 start /unix vcredist_x86.exe /q (Working directory : /home/steve7233/.PlayOnLinux/ressources/vcrun2010)
fixme:clusapi:GetNodeClusterState ((null),0x33eb74) stub!
fixme:advapi:DecryptFileA ("c:\\4e3aacb097c7ba1f26499717da5d1d\\", 00000000): stub
fixme:advapi:RegisterTraceGuidsW (0x6cd15f38, 0x6cd20180, {e2821408-c59d-418f-ad3f-aa4e792aeb79}, 1, 0x33fc90, (null), (null), 0x6cd20188): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:process:SetProcessDEPPolicy (1): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:thread:SetThreadStackGuarantee (0x33fb58): stub
fixme:advapi:LsaOpenPolicy ((null),0x33f454,0x00000001,0x33f47c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:advapi:LsaOpenPolicy ((null),0x33f2a4,0x00000001,0x33f2cc) stub
fixme:advapi:LsaClose (0xcafe) stub
[01/03/14 22:32:55] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/vcrun2010)
[01/03/14 22:32:55] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*msvcr100"="native,builtin"
-----------
[01/03/14 22:32:55] - ----- Ending function POL_Install_vcrun2010 -----
[01/03/14 22:33:04] - ----- Starting function POL_Install_vcrun6 -----
[01/03/14 22:33:04] - Running wine-1.7.9 vcredist.exe (Working directory : /home/steve7233/.PlayOnLinux/tmp)
[01/03/14 22:33:06] - ----- Starting function POL_Install_mfc42 -----
[01/03/14 22:33:07] - Running wine-1.7.9 regsvr32 mfc42.dll (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/windows/temp)
Successfully registered DLL mfc42.dll
[01/03/14 22:33:07] - Running wine-1.7.9 regsvr32 mfc42u.dll (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/windows/temp)
Successfully registered DLL mfc42u.dll
[01/03/14 22:33:08] - ----- Starting function POL_Function_OverrideDLL -----
[01/03/14 22:33:09] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/tmp)
[01/03/14 22:33:09] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*mfc42"="native"
"*mfc42u"="native"
-----------
[01/03/14 22:33:09] - ----- Ending function POL_Function_OverrideDLL -----
[01/03/14 22:33:09] - ----- Ending function POL_Install_mfc42 -----
[01/03/14 22:33:09] - ----- Ending function POL_Install_vcrun6 -----
[01/03/14 22:33:25] - ----- Starting function POL_Install_xvid -----
[01/03/14 22:33:26] - ----- Starting function POL_Install_vcrun6 -----
[01/03/14 22:33:26] - Running wine-1.7.9 vcredist.exe (Working directory : /home/steve7233/.PlayOnLinux/tmp)
fixme:ole:DllRegisterServer stub
[01/03/14 22:33:29] - ----- Starting function POL_Install_mfc42 -----
[01/03/14 22:33:30] - Running wine-1.7.9 regsvr32 mfc42.dll (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/windows/temp)
Successfully registered DLL mfc42.dll
[01/03/14 22:33:30] - Running wine-1.7.9 regsvr32 mfc42u.dll (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/windows/temp)
Successfully registered DLL mfc42u.dll
[01/03/14 22:33:31] - ----- Starting function POL_Function_OverrideDLL -----
[01/03/14 22:33:31] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/tmp)
[01/03/14 22:33:31] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*mfc42"="native"
"*mfc42u"="native"
-----------
[01/03/14 22:33:31] - ----- Ending function POL_Function_OverrideDLL -----
[01/03/14 22:33:31] - ----- Ending function POL_Install_mfc42 -----
[01/03/14 22:33:31] - ----- Ending function POL_Install_vcrun6 -----
[01/03/14 22:33:32] - ----- Starting function POL_Install_vcrun2008 -----
[01/03/14 22:33:32] - Running wine-1.7.9 start /unix vcredist_x86.exe /q (Working directory : /home/steve7233/.PlayOnLinux/ressources/vcrun2008)
fixme:clusapi:GetNodeClusterState ((null),0x33ebf4) stub!
fixme:advapi:DecryptFileA ("c:\\2258ee3344b34ed9691d99\\", 00000000): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:LsaOpenPolicy ((null),0x33f2e4,0x00000001,0x33f30c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:storage:create_storagefile Storage share mode not implemented.
[01/03/14 22:33:39] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/vcrun2008)
[01/03/14 22:33:39] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*msvcr90"="native,builtin"
-----------
fixme:ole:DllRegisterServer stub
[01/03/14 22:33:41] - ----- Ending function POL_Install_vcrun2008 -----
[01/03/14 22:33:57] - Running wine-1.7.9 Xvid-1.3.2-20110601.exe --mode unattended --decode_divx 1 --decode_3ivx 1 --decode_other 1 (Working directory : /home/steve7233/.PlayOnLinux/ressources)
fixme:font:freetype_SelectFont Untranslated charset 255
fixme:imm:ImmReleaseContext (0x1005e, 0x3d6ff90): stub
Xvid MiniConvert will run only in feature-restricted mode!

Reason: Your installed version of Windows Media Player is too old! To make full use of Xvid MiniConvert, please update your Windows Media Player to Version 11 or higher and re-run the Xvid installer.
[01/03/14 22:34:13] - ----- Ending function POL_Install_xvid -----
[01/03/14 22:34:32] - Running wine-1.7.9 winecfg (Working directory : /home/steve7233/.PlayOnLinux)
[01/03/14 22:36:46] - ----- Starting function POL_Install_msxml4 -----
[01/03/14 22:36:47] - Running wine-1.7.9 msiexec /i msxml.msi /q (Working directory : /home/steve7233/.PlayOnLinux/ressources)
fixme:storage:create_storagefile Storage share mode not implemented.
[01/03/14 22:36:48] - ----- Ending function POL_Install_msxml4 -----
[01/03/14 22:37:01] - Running wine-1.7.9 winecfg (Working directory : /home/steve7233/.PlayOnLinux)
[01/03/14 22:39:06] - ----- Starting function POL_Install_d3dx9 -----
[01/03/14 22:39:11] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources)
[01/03/14 22:39:11] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*d3dx9_24"="native, builtin"
"*d3dx9_25"="native, builtin"
"*d3dx9_26"="native, builtin"
"*d3dx9_27"="native, builtin"
"*d3dx9_28"="native, builtin"
"*d3dx9_29"="native, builtin"
"*d3dx9_30"="native, builtin"
"*d3dx9_31"="native, builtin"
"*d3dx9_32"="native, builtin"
"*d3dx9_33"="native, builtin"
"*d3dx9_34"="native, builtin"
"*d3dx9_35"="native, builtin"
"*d3dx9_36"="native, builtin"
"*d3dx9_37"="native, builtin"
"*d3dx9_38"="native, builtin"
"*d3dx9_39"="native, builtin"
"*d3dx9_40"="native, builtin"
"*d3dx9_42"="native, builtin"
"*d3dx9_42"="native, builtin"
"*d3dx9_43"="native, builtin"
-----------
[01/03/14 22:39:12] - ----- Ending function POL_Install_d3dx9 -----
[01/03/14 22:39:26] - ----- Starting function POL_Install_dinput8 -----
[01/03/14 22:39:27] - Running wine-1.7.9 regsvr32 dinput8.dll (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/windows/temp)
Successfully registered DLL dinput8.dll
[01/03/14 22:39:29] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/windows/temp)
[01/03/14 22:39:29] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*dinput8"="native,builtin"
-----------
[01/03/14 22:39:29] - ----- Ending function POL_Install_dinput8 -----
[01/03/14 22:39:37] - ----- Starting function POL_Install_directmusic -----
[01/03/14 22:39:41] - Running wine-1.7.9 regsvr32 devenum.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL devenum.dll
[01/03/14 22:39:42] - Running wine-1.7.9 regsvr32 dmband.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL dmband.dll
[01/03/14 22:39:42] - Running wine-1.7.9 regsvr32 dmcompos.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL dmcompos.dll
[01/03/14 22:39:42] - Running wine-1.7.9 regsvr32 dmime.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL dmime.dll
[01/03/14 22:39:42] - Running wine-1.7.9 regsvr32 dmloader.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL dmloader.dll
[01/03/14 22:39:43] - Running wine-1.7.9 regsvr32 dmscript.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL dmscript.dll
[01/03/14 22:39:43] - Running wine-1.7.9 regsvr32 dmstyle.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL dmstyle.dll
[01/03/14 22:39:43] - Running wine-1.7.9 regsvr32 dmsynth.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL dmsynth.dll
[01/03/14 22:39:44] - Running wine-1.7.9 regsvr32 dmusic.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL dmusic.dll
[01/03/14 22:39:44] - Running wine-1.7.9 regsvr32 dswave.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL dswave.dll
[01/03/14 22:39:44] - Running wine-1.7.9 regsvr32 quartz.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources)
Successfully registered DLL quartz.dll
[01/03/14 22:39:45] - ----- Starting function POL_Function_OverrideDLL -----
[01/03/14 22:39:45] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/tmp)
[01/03/14 22:39:45] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*devenum"="native"
"*dmband"="native"
"*dmcompos"="native"
"*dmime"="native"
"*dmloader"="native"
"*dmscript"="native"
"*dmstyle"="native"
"*dmsynth"="native"
"*dmusic"="native"
"*dmusic32"="native"
"*dswave"="native"
"*streamci"="native"
"*quartz"="native"
-----------
[01/03/14 22:39:45] - ----- Ending function POL_Function_OverrideDLL -----
[01/03/14 22:39:45] - ----- Ending function POL_Install_directmusic -----
[01/03/14 22:39:54] - ----- Starting function POL_Install_directplay -----
[01/03/14 22:39:56] - Running wine-1.7.9 regsvr32 dplayx.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources/Directx/dxnt)
Successfully registered DLL dplayx.dll
[01/03/14 22:39:57] - Running wine-1.7.9 regsvr32 dpnet.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources/Directx/dxnt)
Successfully registered DLL dpnet.dll
[01/03/14 22:39:57] - Running wine-1.7.9 regsvr32 dpnhpast.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources/Directx/dxnt)
fixme:dpnhpast:DllRegisterServer :stub
Successfully registered DLL dpnhpast.dll
[01/03/14 22:39:58] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/Directx/dxnt)
[01/03/14 22:39:58] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*dplayx"="native"
"*dpnet"="native"
"*dpnhpast"="native"
"*dpwsockx"="native"
-----------
[01/03/14 22:39:58] - ----- Ending function POL_Install_directplay -----
[01/03/14 22:40:15] - ----- Starting function POL_Install_dsound -----
[01/03/14 22:40:16] - Running wine-1.7.9 regsvr32 dsound.dll (Working directory : /home/steve7233/.PlayOnLinux/ressources/dsound)
Successfully registered DLL dsound.dll
[01/03/14 22:40:17] - Running wine-1.7.9 regedit /home/steve7233/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/steve7233/.PlayOnLinux/ressources/dsound)
[01/03/14 22:40:17] - Content of /home/steve7233/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*dsound"="native,builtin"
-----------
[01/03/14 22:40:17] - ----- Ending function POL_Install_dsound -----
[01/03/14 22:40:52] - ----- Starting function POL_Install_corefonts -----
[01/03/14 22:40:52] - ----- Ending function POL_Install_corefonts -----
[01/03/14 22:41:36] - Running wine-1.7.9 Age3Launcher.exe (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/Program Files/Steam/SteamApps/common/Age Of Empires 3/bin)
[01/03/14 23:03:38] - Running wine-1.7.9 Age3Launcher.exe (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/Program Files/Steam/SteamApps/common/Age Of Empires 3/bin)
[01/03/14 23:08:30] - Running wine-1.7.9 Steam.exe (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/Program Files/Steam)
[0103/230835:ERROR:resource_bundle.cc(417)] Failed to load C:\Program Files\Steam\bin\chrome.pak
Some features may not be available.
[0103/230835:ERROR:network_change_notifier_win.cc(126)] WSALookupServiceBegin failed with: 8
S
steve723 Sunday 5 January 2014 at 2:56
steve723Anonymous

I installed the full dirextx9 as per the wine application database. Now the intro video plays and sounds right. I started the tutorial and there was no sound and it looks like a bad lighting or bloom problem.

[01/04/14 17:45:03] - Running wine-1.7.9 C:\windows\temp\directx9\DXSETUP.exe /silent (Working directory : /home/steve7233/.PlayOnLinux/ressources)
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
err:setupapi:do_file_copyW Unsupported style(s) 0x144
[01/04/14 17:45:26] - ----- Ending function POL_Install_directx9 -----
[01/04/14 17:45:46] - Running wine-1.7.9 Age3Launcher.exe (Working directory : /home/steve7233/.PlayOnLinux/wineprefix/AGEofEmpiresIII/drive_c/Program Files/Steam/SteamApps/common/Age Of Empires 3/bin)
[01/04/14 17:52:25] - Running wine-1.7.9 winecfg (Working directory : /home/steve7233/.PlayOnLinux)
steve723 Thursday 16 January 2014 at 8:26
steve723Anonymous

I am still trying to solve this.

Anybody?
steve723 Thursday 16 January 2014 at 10:30
steve723Anonymous

I tried switching wine to Windows 7. Now the game works but the intro video is a small square in the top right corner. Now the sound works in the intro and the game. I had to play with the graphics settings to get it to look right on my laptop. I hope I can figure out the intro problem.
ouafnico Wednesday 29 January 2014 at 22:04
ouafnicoAnonymous

Hello,

I'm stuck to during installation when I need to give key.
I can only give 4 characters in the first group ! So installation can't continue...

Have you got a solution ?