The Walking Dead Law and Order Legacies Jurassic Park Back to the future: The Game Puzzle Agent Sam & Max Tales of Monkey Island Wallace & Gromit's Grand Adventures More Telltale Games
Forgot your password?
No worries, we can help!

The Walking Dead

Go Back   Telltale Games Forums > Telltale Games Support > Game Support - General

Game Support - General Having trouble with a Telltale Product? Look below. Need to contact support? Click here : support@telltalegames.com

Reply
 
Thread Tools Search this Thread
Old 11/24/2010, 03:52 pm   #1
SupSuper
Vista Geek God
 
SupSuper's Avatar
 
Join Date: Nov 2006
Location: Portugal
Posts: 17
Send a message via ICQ to SupSuper Send a message via AIM to SupSuper Send a message via MSN to SupSuper Send a message via Yahoo to SupSuper
Default Poker Night: All my stats are gone!

So after a busy day I load up Poker Night, and it starts up in a window for some reason (I usually play full-screen). No biggie I think, sometimes games do that, I fix up the Options and go play.

I notice I have the option to "Continue Tournament" (I didn't even know the game saved tournaments) even though I finished my last tournament, but I decide to try it out anyways. The game seems to load up the last game right when I lost, with me having no money:



Yet when I start the hand I suddenly get a bunch of money to play with. Oh well, whatever, I continue the game and beat the Heavy.

Then I noticed... all my game stats are gone! Unlocks, items, everything! There's only stats for the hands I played since I loaded the game. Although the achievements are intact, you can see I had gotten the Strong Bad glasses:



Luckily I hadn't advanced much in the game so I'm not too bothered, but still, what the hell happened to all my cool stuff??
SupSuper is offline   Reply With Quote
Old 11/25/2010, 10:43 am   #2
Taller Ghost Walt
Junior Member
 
Taller Ghost Walt's Avatar
 
Join Date: Feb 2009
Posts: 27
Default

Same problem here: Game started in windowed mode today and had let me finish a tournament (don't know if this is actually related, I'm not sure I finished the last one yesterday).

Now all the stats are gone, as well as the unlocked items, decks and tables. Also all the options in setup were set back to the original state.
Taller Ghost Walt is offline   Reply With Quote
Old 11/27/2010, 10:51 am   #3
DjNDB  Community Moderator
Community Moderator
 
DjNDB's Avatar
 
Join Date: Jan 2007
Location: Germany
Posts: 4,742
Default

That happened to me too.
I wrote a little quick+dirty python script that zips the savegame and prefs.prop every 60 seconds.
Let's see how that works out.
DjNDB is offline   Reply With Quote
Old 11/28/2010, 10:09 am   #4
DjNDB  Community Moderator
Community Moderator
 
DjNDB's Avatar
 
Join Date: Jan 2007
Location: Germany
Posts: 4,742
Default

In case anyone has a use for the python script:

Code:
import shutil, time, threading
# This script is just a quick+dirty way to have a regular zipped
# backup of a folder in a certain interval, until you stop it.
#
# For very pessimistic data safety reasons a new archive is created each time.
# Be aware that this will take a lot of space, if you chose a short interval.
# You will also want to manually delete old backups every now and then.
#
# Adapt "base_dir" and "backup_interval" to match your environment/preference

# Directory to backup
base_dir="C:\\Users\\Username\\Documents\\Telltale Games\\Poker Night at the Inventory"

# Backup interval in seconds
backup_interval=300

def createArchive():
    # Use current time in seconds as filename suffix
    base_name="PNATI_Backup-"+str(time.mktime(time.gmtime())) 
    shutil.make_archive(base_name,'zip',base_dir)
    print "Created Backup: " + base_name   
    global timer
    # Create a backup archive 
    timer = threading.Timer(backup_interval, createArchive)
    timer.start()    

createArchive() 
raw_input("Press any key to stop\n");
timer.cancel()
I can't decide which backup interval is appropriate. 60 seconds should catch most of the Poker progress, but will create a lot of archives.
Depending on how often stats are lost it might be reasonable to just make a backup every ten or more minutes or even just every day. I set it to 5 minutes in the posted version.

The script was just a spontaneous mini project to get a little more python experience. I am pretty new to the language, so i just use it every now and then for fun and profit.

Last edited by DjNDB; 11/28/2010 at 10:14 am.
DjNDB is offline   Reply With Quote
Old 12/03/2010, 10:17 pm   #5
Vainamoinen  Community Moderator
Community Moderator
 
Vainamoinen's Avatar
 
Join Date: Jun 2009
Posts: 6,641
Default

Shoooooot. EXACTLY this happened to me last night. If I had any real interest in poker or had bought this game for any other reason than to get the 25% off everything deal, I'd be really p****d right now. 24.000 on the plus side, all TF2 items and nearly all unlocks. I was so happy to have the TF2 items because I started to get annoyed when these guys randomly put their stuff on the table.

The patch hasn't addressed that problem, correct?
__________________

Moderators on the TTG forums are all volunteers from the community and still belong to the community. They are not employees of the company. The opinions expressed in their posts are those of individual fans and must not be confused with official company statements.
Vainamoinen is offline   Reply With Quote
Old 12/03/2010, 10:34 pm   #6
SunnyGuy
Senior Member
 
SunnyGuy's Avatar
 
Join Date: Jul 2010
Location: Guadalajara, Jalisco (Mexico)
Posts: 980
Send a message via AIM to SunnyGuy Send a message via MSN to SunnyGuy
Default

Considering it happened to me again one game after I installed the new version, no.

Heads up for whoever has his data erased but had a backup of it, don't try to replace it inmediately or the backup will get screwed up too, play one tourney or something before that >__>
SunnyGuy is offline   Reply With Quote
Old 12/04/2010, 06:12 pm   #7
Ryuu
Junior Member
 
Join Date: Dec 2010
Posts: 1
Default

I've lost 60,000 on the plus, two tables, three decks. Now the character items... I don't have them in the poker game, but I still have them as achievements for the poker game, and in TF2.
So I guess i haven't lost much. But it's just annoying to have to start from the beginning....
Ryuu is offline   Reply With Quote
Old 12/05/2010, 02:32 am   #8
TextureGlitch
Member
 
TextureGlitch's Avatar
 
Join Date: Oct 2006
Posts: 73
Default

I just lost all my stats as well. What the heck is going on?

I've got the game installed on both Steam and the Telltale version, they seem to be using the same savefile on my machine.
I started the Steam version yesterday and it crashed repeatedly. Rebooted, started it again and it worked, but all my stats are erased. I've still got all the steam achievements, though.
TextureGlitch is offline   Reply With Quote
Old 12/05/2010, 03:31 am   #9
TextureGlitch
Member
 
TextureGlitch's Avatar
 
Join Date: Oct 2006
Posts: 73
Default

I've noticed that the pnati_save.save file grows every time you unlock something new.
My file is still there and it's the right size (i.e. bigger than a new install), so it seems as if the file is just being ignored by the game now. Maybe because it's been corrupted?
TextureGlitch is offline   Reply With Quote
Old 12/07/2010, 10:46 am   #10
Amy Lukima
Senior Member
 
Amy Lukima's Avatar
 
Join Date: Sep 2010
Location: San Francisco CA
Posts: 827
Default

Are you guys making sure to exit through the menu? Also could you send me your dxdiags?
Amy Lukima is offline   Reply With Quote
Old 12/07/2010, 11:32 am   #11
TextureGlitch
Member
 
TextureGlitch's Avatar
 
Join Date: Oct 2006
Posts: 73
Default

Quote:
Originally Posted by Amy Lukima View Post
Are you guys making sure to exit through the menu? Also could you send me your dxdiags?
I've managed to reproduce the error.

VLC video player tends to hog my SPDIF output and mute all other applications when it's open. Having VLC running makes celebritypoker.exe crash on startup, maybe they're fighting for the sound output or something, I don't know.

If Poker doesn't start up, that's fine, but it's certainly not supposed to corrupt my savegame if it can't start.

After Poker crashed on startup, I closed VLC and started Poker again. All graphics settings are back to default, but it still remembers that I'm in the middle of a tournament and I can click the 'continue tournament' button in the menu.
It continues the tournament where I left off, however, all my stats are reset and all my unlocks are gone.

I've attached the broken savegame in a zip file. Hopefully you can figure out what goes wrong during startup.
Attached Files
File Type: zip pnati_save.zip (81.1 KB, 12 views)
TextureGlitch is offline   Reply With Quote
Old 12/07/2010, 12:21 pm   #12
Diduz
Senior Member
 
Diduz's Avatar
 
Join Date: Oct 2006
Location: Italy
Posts: 321
Default

Quote:
Originally Posted by TextureGlitch View Post
All graphics settings are back to default, but it still remembers that I'm in the middle of a tournament and I can click the 'continue tournament' button in the menu.
It continues the tournament where I left off, however, all my stats are reset and all my unlocks are gone.
The same thing happened to me, except I didn't have VLC running. I got a random crash at Poker Night startup, though.
Diduz is offline   Reply With Quote
Old 12/07/2010, 01:09 pm   #13
DjNDB  Community Moderator
Community Moderator
 
DjNDB's Avatar
 
Join Date: Jan 2007
Location: Germany
Posts: 4,742
Default

Quote:
Originally Posted by TextureGlitch View Post
VLC video player tends to hog my SPDIF output and mute all other applications when it's open. Having VLC running makes celebritypoker.exe crash on startup, maybe they're fighting for the sound output or something, I don't know.

Good catch. I don't remember how i lost my stats back then and what was running, but i can definitely reproduce this too.
It doesn't have to be VLC. If I play a video which uses s/pdif passthrough and start poker night, the FMOD module crashes and the prefs.prop gets lost. I use ffdshow tryouts for videos with a directshow media player.
VLC and ffdshow are both based on FFMPEG, but i think the actual issue is blocking the sound interface like that in general.
It is possible, that FMOD doesn't handle seeing the blocked sound device properly, but to confirm that would need some tests or debugging, which i don't have time for at the moment.

I attached Backups of the settings and save game before and after the crash. The file with the later unix time stamp in the name is the one after the crash.

Also here's a crash log:
Code:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2010-12-07T21:44:00.000000000Z" />
    <EventRecordID>7735</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Andy-PC</Computer>
    <Security />
  </System>
  <EventData>
    <Data>CelebrityPoker.exe</Data>
    <Data>2010.12.2.50602</Data>
    <Data>4cf7eaf7</Data>
    <Data>fmodex.dll</Data>
    <Data>0.4.30.3</Data>
    <Data>4be351f9</Data>
    <Data>c0000005</Data>
    <Data>00072658</Data>
    <Data>17b4</Data>
    <Data>01cb9657c9f3621c</Data>
    <Data>C:\Program Files (x86)\Telltale Games\Poker Night\Poker Night at the Inventory\CelebrityPoker.exe</Data>
    <Data>C:\Program Files (x86)\Telltale Games\Poker Night\Poker Night at the Inventory\fmodex.dll</Data>
    <Data>195ad21a-024b-11e0-804e-0015833e3a6d</Data>
  </EventData>
</Event>
And a dxdiag log:
Code:
------------------
System Information
------------------
Time of this report: 12/7/2010, 23:06:20
       Machine name: ANDY-PC
   Operating System: Windows 7 Professional 64-bit (6.1, Build 7600) (7600.win7_gdr.100618-1621)
           Language: German (Regional Setting: German)
System Manufacturer: Gigabyte Technology Co., Ltd.
       System Model: GA-MA78GM-S2H
               BIOS: Award Modular BIOS v6.00PG
          Processor: AMD Phenom(tm) II X4 940 Processor (4 CPUs), ~3.0GHz
             Memory: 8192MB RAM
Available OS Memory: 8190MB RAM
          Page File: 2889MB used, 13487MB available
        Windows Dir: C:\Windows
    DirectX Version: DirectX 11
DX Setup Parameters: Not found
   User DPI Setting: 96 DPI (100 percent)
 System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
     DxDiag Version: 6.01.7600.16385 64bit Unicode

------------
DxDiag Notes
------------
      Display Tab 1: No problems found.
        Sound Tab 1: No problems found.
          Input Tab: No problems found.

--------------------
DirectX Debug Levels
--------------------
Direct3D:    0/4 (retail)
DirectDraw:  0/4 (retail)
DirectInput: 0/5 (retail)
DirectMusic: 0/5 (retail)
DirectPlay:  0/9 (retail)
DirectSound: 0/5 (retail)
DirectShow:  0/6 (retail)

---------------
Display Devices
---------------
          Card name: ATI Radeon HD 4800 Series         
       Manufacturer: ATI Technologies Inc.
          Chip type: ATI display adapter (0x9442)
           DAC type: Internal DAC(400MHz)
         Device Key: Enum\PCI\VEN_1002&DEV_9442&SUBSYS_21C71458&REV_00
     Display Memory: 4081 MB
   Dedicated Memory: 1014 MB
      Shared Memory: 3067 MB
       Current Mode: 1920 x 1200 (32 bit) (59Hz)
       Monitor Name: Dell 2407WFP (Digital)
      Monitor Model: DELL 2407WFP
         Monitor Id: DELA017
        Native Mode: 1920 x 1200(p) (59.950Hz)
        Output Type: DVI
        Driver Name: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
Driver File Version: 8.17.0010.1052 (English)
     Driver Version: 8.791.0.0
        DDI Version: 10.1
       Driver Model: WDDM 1.1
  Driver Attributes: Final Retail
   Driver Date/Size: 10/27/2010 03:54:22, 645120 bytes
        WHQL Logo'd: Yes
    WHQL Date Stamp: 
  Device Identifier: {D7B71EE2-D702-11CF-F473-CD01BEC2C535}
          Vendor ID: 0x1002
          Device ID: 0x9442
          SubSys ID: 0x21C71458
        Revision ID: 0x0000
 Driver Strong Name: oem80.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_RV7X:8.791.0.0:pci\ven_1002&dev_9442
     Rank Of Driver: 00E62001
        Video Accel: ModeMPEG2_A ModeMPEG2_C 
   Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                     {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
       D3D9 Overlay: Not Supported
            DXVA-HD: Not Supported
       DDraw Status: Enabled
         D3D Status: Enabled
         AGP Status: Enabled

-------------
Sound Devices
-------------
            Description: Realtek Digital Output (Realtek High Definition Audio)
 Default Sound Playback: Yes
 Default Voice Playback: Yes
            Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0885&SUBSYS_1458A002&REV_1001
        Manufacturer ID: 1
             Product ID: 100
                   Type: WDM
            Driver Name: RTKVHD64.sys
         Driver Version: 6.00.0001.6235 (English)
      Driver Attributes: Final Retail
            WHQL Logo'd: Yes
          Date and Size: 11/2/2010 19:33:10, 2536040 bytes
            Other Files: 
        Driver Provider: Realtek Semiconductor Corp.
         HW Accel Level: Basic
              Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
 Static/Strm HW 3D Bufs: 0, 0
              HW Memory: 0
       Voice Management: No
 EAX(tm) 2.0 Listen/Src: No, No
   I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No

---------------------
Sound Capture Devices
---------------------
            Description: Realtek Digital Input (Realtek High Definition Audio)
  Default Sound Capture: Yes
  Default Voice Capture: Yes
            Driver Name: RTKVHD64.sys
         Driver Version: 6.00.0001.6235 (English)
      Driver Attributes: Final Retail
          Date and Size: 11/2/2010 19:33:10, 2536040 bytes
              Cap Flags: 0x1
           Format Flags: 0xFFFFF

-------------------
DirectInput Devices
-------------------
      Device Name: Maus
         Attached: 1
    Controller ID: n/a
Vendor/Product ID: n/a
        FF Driver: n/a

      Device Name: Tastatur
         Attached: 1
    Controller ID: n/a
Vendor/Product ID: n/a
        FF Driver: n/a

      Device Name: HID-konformes Benutzersteuergerät
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x046A, 0x0023
        FF Driver: n/a

      Device Name: HID-konformes Benutzersteuergerät
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x046A, 0x0023
        FF Driver: n/a

      Device Name: HID-konformes Gerät
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x046A, 0x0023
        FF Driver: n/a

      Device Name: HID-konformes Gerät
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x046A, 0x0023
        FF Driver: n/a

      Device Name: UnKnown
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x057E, 0x0306
        FF Driver: n/a

Poll w/ Interrupt: No

-----------
USB Devices
-----------
+ USB-Root-Hub
| Vendor/Product ID: 0x1002, 0x4398
| Matching Device ID: usb\root_hub
| Service: usbhub
| Driver: usbhub.sys, 7/14/2009 01:07:09, 343040 bytes
| Driver: usbd.sys, 7/14/2009 01:06:23, 7936 bytes

----------------
Gameport Devices
----------------

------------
PS/2 Devices
------------
+ HID-Tastatur
| Vendor/Product ID: 0x046A, 0x0023
| Matching Device ID: hid_device_system_keyboard
| Service: kbdhid
| Driver: kbdhid.sys, 7/14/2009 01:00:20, 33280 bytes
| Driver: kbdclass.sys, 7/14/2009 02:48:04, 50768 bytes
| 
+ HID-Tastatur
| Vendor/Product ID: 0x046A, 0x0023
| Matching Device ID: hid_device_system_keyboard
| Service: kbdhid
| Driver: kbdhid.sys, 7/14/2009 01:00:20, 33280 bytes
| Driver: kbdclass.sys, 7/14/2009 02:48:04, 50768 bytes
| 
+ Terminalserver-Tastaturtreiber
| Matching Device ID: root\rdp_kbd
| Upper Filters: kbdclass
| Service: TermDD
| Driver: i8042prt.sys, 7/14/2009 00:19:57, 105472 bytes
| Driver: kbdclass.sys, 7/14/2009 02:48:04, 50768 bytes
| 
+ HID-konforme Maus
| Vendor/Product ID: 0x046D, 0xC046
| Matching Device ID: hid_device_system_mouse
| Service: mouhid
| Driver: mouhid.sys, 7/14/2009 01:00:20, 31232 bytes
| Driver: mouclass.sys, 7/14/2009 02:48:27, 49216 bytes
| 
+ Terminalserver-Maustreiber
| Matching Device ID: root\rdp_mou
| Upper Filters: mouclass
| Service: TermDD
| Driver: termdd.sys, 7/14/2009 02:45:55, 62544 bytes
| Driver: sermouse.sys, 7/14/2009 01:00:20, 26624 bytes
| Driver: mouclass.sys, 7/14/2009 02:48:27, 49216 bytes

------------------------
Disk & DVD/CD-ROM Drives
------------------------
      Drive: C:
 Free Space: 28.4 GB
Total Space: 100.0 GB
File System: NTFS
      Model: WDC WD10 EACS-00D6B1 SATA Disk Device

      Drive: D:
 Free Space: 149.1 GB
Total Space: 853.9 GB
File System: NTFS
      Model: WDC WD10 EACS-00D6B1 SATA Disk Device

      Drive: E:
 Free Space: 35.5 GB
Total Space: 953.9 GB
File System: NTFS
      Model: n/a

      Drive: F:
      Model: LITE-ON DVDRW LH-20A1S SATA CdRom Device
     Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7600.16385 (German), 7/14/2009 00:19:54, 147456 bytes

--------------
System Devices
--------------
     Name: Realtek PCIe GBE Family Controller
Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_E0001458&REV_02\4&1B7160FD&0&0050
   Driver: n/a

     Name: PCI Standard-Host-CPU-Brücke
Device ID: PCI\VEN_1022&DEV_1200&SUBSYS_00000000&REV_00\3&18D45AA6&0&C0
   Driver: n/a

     Name: Standard OpenHCD USB-Hostcontroller
Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_50041458&REV_00\3&18D45AA6&0&98
   Driver: C:\Windows\system32\drivers\usbohci.sys, 6.01.7600.16385 (English), 7/14/2009 01:06:30, 25600 bytes
   Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:31, 324608 bytes
   Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (German), 7/14/2009 01:07:09, 343040 bytes

     Name: PCI Standard-PCI-zu-PCI-Brücke
Device ID: PCI\VEN_1022&DEV_9609&SUBSYS_96001022&REV_00\3&18D45AA6&0&50
   Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (German), 7/14/2009 02:45:45, 183872 bytes

     Name: High Definition Audio-Controller
Device ID: PCI\VEN_1002&DEV_AA30&SUBSYS_AA301458&REV_00\4&25B761A6&0&0110
   Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:13, 122368 bytes

     Name: Standard OpenHCD USB-Hostcontroller
Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_50041458&REV_00\3&18D45AA6&0&90
   Driver: C:\Windows\system32\drivers\usbohci.sys, 6.01.7600.16385 (English), 7/14/2009 01:06:30, 25600 bytes
   Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:31, 324608 bytes
   Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (German), 7/14/2009 01:07:09, 343040 bytes

     Name: PCI Standard-PCI-zu-PCI-Brücke
Device ID: PCI\VEN_1022&DEV_9603&SUBSYS_96001022&REV_00\3&18D45AA6&0&10
   Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (German), 7/14/2009 02:45:45, 183872 bytes

     Name: ATI Radeon HD 4800 Series         
Device ID: PCI\VEN_1002&DEV_9442&SUBSYS_21C71458&REV_00\4&25B761A6&0&0010
   Driver: C:\Windows\system32\DRIVERS\atikmdag.sys, 8.01.0001.1094 (English), 10/27/2010 05:00:14, 8012288 bytes
   Driver: C:\Windows\system32\DRIVERS\ati2erec.dll, 1.00.0000.0019 (English), 10/27/2010 03:12:54, 53248 bytes
   Driver: C:\Windows\system32\DRIVERS\atikmpag.sys, 8.14.0001.6160 (English), 10/27/2010 03:14:22, 287232 bytes
   Driver: C:\Windows\system32\atiumd64.dll, 8.14.0010.0791 (English), 10/27/2010 03:22:02, 5218304 bytes
   Driver: C:\Windows\system32\atiumd6a.dll, 8.14.0010.0283 (English), 10/27/2010 02:57:02, 3221504 bytes
   Driver: C:\Windows\system32\atitmm64.dll, 6.14.0011.0023 (English), 10/27/2010 03:50:28, 120320 bytes
   Driver: C:\Windows\system32\atiicdxx.dat, 9/22/2010 19:27:52, 223990 bytes
   Driver: C:\Windows\system32\amdpcom64.dll, 8.14.0010.0023 (English), 10/27/2010 02:37:16, 53760 bytes
   Driver: C:\Windows\system32\atimpc64.dll, 8.14.0010.0023 (English), 10/27/2010 02:37:16, 53760 bytes
   Driver: C:\Windows\system32\atiadlxx.dll, 6.14.0010.1054 (English), 10/27/2010 03:14:56, 349184 bytes
   Driver: C:\Windows\system32\atiumd6a.cap, 10/27/2010 02:54:52, 653056 bytes
   Driver: C:\Windows\system32\atimuixx.dll, 6.14.0010.1001 (English), 10/27/2010 03:49:52, 16384 bytes
   Driver: C:\Windows\system32\atiapfxx.exe, 6.14.0010.1001 (English), 10/27/2010 03:55:30, 143360 bytes
   Driver: C:\Windows\system32\atiapfxx.blb, 10/27/2010 03:55:34, 99504 bytes
   Driver: C:\Windows\system32\atiesrxx.exe, 6.14.0011.1077 (English), 10/27/2010 03:51:36, 203776 bytes
   Driver: C:\Windows\system32\atieclxx.exe, 6.14.0011.1077 (English), 10/27/2010 03:52:12, 478208 bytes
   Driver: C:\Windows\system32\atipdl64.dll, 6.14.0010.2563 (English), 10/27/2010 03:50:14, 423424 bytes
   Driver: C:\Windows\system32\atiedu64.dll, 6.14.0010.2514 (English), 10/27/2010 03:49:48, 59392 bytes
   Driver: C:\Windows\system32\ATIDEMGX.dll, 2.00.3951.39368 (German), 10/27/2010 03:52:18, 450560 bytes
   Driver: C:\Windows\system32\atio6axx.dll, 6.14.0010.10317 (English), 10/27/2010 04:25:36, 21422592 bytes
   Driver: C:\Windows\system32\aticaldd64.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:06, 6815744 bytes
   Driver: C:\Windows\system32\aticalrt64.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:28, 51200 bytes
   Driver: C:\Windows\system32\aticalcl64.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:18, 44544 bytes
   Driver: C:\Windows\system32\atipblag.dat, 9/17/2010 19:17:00, 2888 bytes
   Driver: C:\Windows\system32\atiu9p64.dll, 8.14.0001.6160 (English), 10/27/2010 03:13:28, 37888 bytes
   Driver: C:\Windows\system32\atiuxp64.dll, 8.14.0001.6160 (English), 10/27/2010 03:13:42, 39936 bytes
   Driver: C:\Windows\system32\atig6pxx.dll, 8.14.0001.6160 (English), 10/27/2010 03:14:42, 14848 bytes
   Driver: C:\Windows\system32\atig6txx.dll, 8.14.0001.6160 (English), 10/27/2010 03:14:36, 31744 bytes
   Driver: C:\Windows\system32\atibtmon.exe, 2.00.0000.0000 (English), 5/11/2009 21:35:30, 118784 bytes
   Driver: C:\Windows\system32\atidxx64.dll, 8.17.0010.0318 (English), 10/27/2010 03:38:02, 4744704 bytes
   Driver: C:\Windows\SysWOW64\atiumdag.dll, 8.14.0010.0791 (English), 10/27/2010 03:28:20, 4094464 bytes
   Driver: C:\Windows\SysWOW64\atiumdva.dll, 8.14.0010.0283 (English), 10/27/2010 02:50:08, 3460096 bytes
   Driver: C:\Windows\SysWOW64\amdpcom32.dll, 8.14.0010.0023 (English), 10/27/2010 02:37:12, 52736 bytes
   Driver: C:\Windows\SysWOW64\atimpc32.dll, 8.14.0010.0023 (English), 10/27/2010 02:37:12, 52736 bytes
   Driver: C:\Windows\SysWOW64\atiadlxy.dll, 6.14.0010.1054 (English), 10/27/2010 03:14:50, 249856 bytes
   Driver: C:\Windows\SysWOW64\atiumdva.cap, 10/27/2010 02:49:46, 653056 bytes
   Driver: C:\Windows\SysWOW64\atipdlxx.dll, 6.14.0010.2563 (English), 10/27/2010 03:50:08, 356352 bytes
   Driver: C:\Windows\SysWOW64\Oemdspif.dll, 6.15.0006.0006 (English), 10/27/2010 03:49:56, 278528 bytes
   Driver: C:\Windows\SysWOW64\ati2edxx.dll, 6.14.0010.2514 (English), 10/27/2010 03:49:44, 43520 bytes
   Driver: C:\Windows\SysWOW64\atioglxx.dll, 6.14.0010.10317 (English), 10/27/2010 04:08:16, 16281600 bytes
   Driver: C:\Windows\SysWOW64\atidxx32.dll, 8.17.0010.0318 (English), 10/27/2010 03:46:56, 4020736 bytes
   Driver: C:\Windows\SysWOW64\aticaldd.dll, 6.14.0010.0880 (English), 10/27/2010 03:33:50, 5441536 bytes
   Driver: C:\Windows\SysWOW64\aticalrt.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:26, 46080 bytes
   Driver: C:\Windows\SysWOW64\aticalcl.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:16, 44032 bytes
   Driver: C:\Windows\SysWOW64\atipblag.dat, 9/17/2010 19:17:00, 2888 bytes
   Driver: C:\Windows\SysWOW64\atiu9pag.dll, 8.14.0001.6160 (English), 10/27/2010 03:13:22, 28672 bytes
   Driver: C:\Windows\SysWOW64\atiuxpag.dll, 8.14.0001.6160 (English), 10/27/2010 03:13:34, 30720 bytes
   Driver: C:\Windows\SysWOW64\atigktxx.dll, 8.14.0001.6160 (English), 10/27/2010 03:14:30, 27136 bytes
   Driver: C:\Windows\SysWOW64\atiglpxx.dll, 8.14.0001.6160 (English), 10/27/2010 03:14:40, 12800 bytes
   Driver: C:\Windows\atiogl.xml, 8/12/2010 16:12:46, 22190 bytes
   Driver: C:\Windows\system32\ATIODCLI.exe, 1.00.0000.0001 (English), 6/22/2009 16:34:36, 51200 bytes
   Driver: C:\Windows\system32\ATIODE.exe, 1.00.0000.0001 (English), 8/27/2010 19:33:08, 332800 bytes
   Driver: C:\Windows\system32\atiglpxx.dll, 8.14.0001.6160 (English), 10/27/2010 03:14:40, 12800 bytes
   Driver: C:\Windows\system32\aticfx64.dll, 8.17.0010.1052 (English), 10/27/2010 03:54:22, 645120 bytes
   Driver: C:\Windows\SysWOW64\aticfx32.dll, 8.17.0010.1052 (English), 10/27/2010 03:55:22, 547328 bytes
   Driver: C:\Windows\system32\coinst.dll, 1.00.0003.0005 (English), 10/27/2010 03:14:58, 58880 bytes

     Name: Standard PCI-zu-USB erweiterter Hostcontroller
Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_50041458&REV_00\3&18D45AA6&0&9A
   Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7600.16385 (English), 7/14/2009 01:06:30, 51200 bytes
   Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:31, 324608 bytes
   Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (German), 7/14/2009 01:07:09, 343040 bytes

     Name: PCI Standard-Host-CPU-Brücke
Device ID: PCI\VEN_1022&DEV_9600&SUBSYS_96001022&REV_00\3&18D45AA6&0&00
   Driver: n/a

     Name: PCI Standard-ISA-Brücke
Device ID: PCI\VEN_1002&DEV_439D&SUBSYS_439D1002&REV_00\3&18D45AA6&0&A3
   Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 6.01.7600.16385 (English), 7/14/2009 02:48:27, 15424 bytes

     Name: Standard PCI-zu-USB erweiterter Hostcontroller
Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_50041458&REV_00\3&18D45AA6&0&92
   Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7600.16385 (English), 7/14/2009 01:06:30, 51200 bytes
   Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:31, 324608 bytes
   Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (German), 7/14/2009 01:07:09, 343040 bytes

     Name: PCI Standard-Host-CPU-Brücke
Device ID: PCI\VEN_1022&DEV_1204&SUBSYS_00000000&REV_00\3&18D45AA6&0&C4
   Driver: n/a

     Name: Standard-Zweikanal-PCI-IDE-Controller
Device ID: PCI\VEN_1002&DEV_439C&SUBSYS_50021458&REV_00\3&18D45AA6&0&A1
   Driver: C:\Windows\system32\DRIVERS\pciide.sys, 6.01.7600.16385 (English), 7/14/2009 02:45:45, 12352 bytes
   Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (German), 7/14/2009 02:45:46, 48720 bytes
   Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 02:52:21, 24128 bytes
   Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7600.16385 (German), 7/14/2009 02:52:21, 155728 bytes

     Name: AMD SATA Controller
Device ID: PCI\VEN_1002&DEV_4391&SUBSYS_B0021458&REV_00\3&18D45AA6&0&88
   Driver: C:\Windows\system32\DRIVERS\amdsata.sys, 1.02.0000.0164 (German), 10/8/2009 00:13:34, 70200 bytes
   Driver: C:\Windows\system32\DRIVERS\amdxata.sys, 1.02.0000.0164 (German), 10/8/2009 00:13:34, 28728 bytes

     Name: PCI Standard-Host-CPU-Brücke
Device ID: PCI\VEN_1022&DEV_1203&SUBSYS_00000000&REV_00\3&18D45AA6&0&C3
   Driver: n/a

     Name: Standard OpenHCD USB-Hostcontroller
Device ID: PCI\VEN_1002&DEV_4399&SUBSYS_50041458&REV_00\3&18D45AA6&0&A5
   Driver: C:\Windows\system32\drivers\usbohci.sys, 6.01.7600.16385 (English), 7/14/2009 01:06:30, 25600 bytes
   Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:31, 324608 bytes
   Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (German), 7/14/2009 01:07:09, 343040 bytes

     Name: ATI E/A-Kommunikationsprozessor-SMBus-Controller
Device ID: PCI\VEN_1002&DEV_4385&SUBSYS_43851458&REV_3A\3&18D45AA6&0&A0
   Driver: n/a

     Name: PCI Standard-Host-CPU-Brücke
Device ID: PCI\VEN_1022&DEV_1202&SUBSYS_00000000&REV_00\3&18D45AA6&0&C2
   Driver: n/a

     Name: Standard OpenHCD USB-Hostcontroller
Device ID: PCI\VEN_1002&DEV_4398&SUBSYS_50041458&REV_00\3&18D45AA6&0&99
   Driver: C:\Windows\system32\drivers\usbohci.sys, 6.01.7600.16385 (English), 7/14/2009 01:06:30, 25600 bytes
   Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:31, 324608 bytes
   Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (German), 7/14/2009 01:07:09, 343040 bytes

     Name: ATI E/A-Kommunikationsprozessor-PCI-Buscontroller
Device ID: PCI\VEN_1002&DEV_4384&SUBSYS_00000000&REV_00\3&18D45AA6&0&A4
   Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (German), 7/14/2009 02:45:45, 183872 bytes

     Name: PCI Standard-Host-CPU-Brücke
Device ID: PCI\VEN_1022&DEV_1201&SUBSYS_00000000&REV_00\3&18D45AA6&0&C1
   Driver: n/a

     Name: Standard OpenHCD USB-Hostcontroller
Device ID: PCI\VEN_1002&DEV_4398&SUBSYS_50041458&REV_00\3&18D45AA6&0&91
   Driver: C:\Windows\system32\drivers\usbohci.sys, 6.01.7600.16385 (English), 7/14/2009 01:06:30, 25600 bytes
   Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:31, 324608 bytes
   Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (German), 7/14/2009 01:07:09, 343040 bytes

     Name: High Definition Audio-Controller
Device ID: PCI\VEN_1002&DEV_4383&SUBSYS_A0221458&REV_00\3&18D45AA6&0&A2
   Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:13, 122368 bytes

------------------
DirectShow Filters
------------------

DirectShow Filters:
WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7600.16385
WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7600.16385
WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7600.16385
MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7600.16385
WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7600.16385
Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.00.0007.3136
ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.00.0007.3136
ffdshow Audio Decoder,0x3fffffff,1,1,ffdshow.ax,1.00.0007.3136
DV Muxer,0x00400000,0,0,qdv.dll,6.06.7600.16385
Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7600.16490
WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7600.16385
Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7600.16385
AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7600.16490
VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7600.16490
SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7600.16385
Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7600.16590
StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7600.16385
Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.16385
MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16490
CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.01.7600.16385
MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7600.16490
SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7600.16590
Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7600.16385
SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7600.16385
Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7600.16490
DV Splitter,0x00600000,1,2,qdv.dll,6.06.7600.16385
Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7600.16490
Haali Media Splitter,0x00800001,0,1,splitter.x64.ax,1.09.0355.0021
Haali Media Splitter (AR),0x00400000,1,1,splitter.x64.ax,1.09.0355.0021
Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7600.16385
ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7600.16490
Video Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7600.16385
Line 21 Decoder,0x00600000,1,1,,
Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7600.16490
Video Renderer,0x00400000,1,0,quartz.dll,6.06.7600.16490
Haali Video Renderer,0x00200000,1,0,dxr.x64.dll,
VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7600.16385
WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7600.16385
VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7600.16385
File writer,0x00200000,1,0,qcap.dll,6.06.7600.16385
iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7600.16385
iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7600.16385
Haali Simple Media Splitter,0x00200000,0,1,splitter.x64.ax,1.09.0355.0021
DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7600.16385
Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.16385
Overlay Mixer2,0x00200000,1,1,,
Haali Matroska Muxer,0x00200000,1,0,splitter.x64.ax,1.09.0355.0021
RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7600.16385
MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7600.16590
DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7600.16385
ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.00.0007.3136
SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7600.16385
Null Renderer,0x00200000,1,0,qedit.dll,6.06.7600.16385
MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7600.16385
Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7600.16385
StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7600.16385
Smart Tee,0x00200000,1,2,qcap.dll,6.06.7600.16385
Overlay Mixer,0x00200000,0,0,,
AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16490
NetBridge,0x00200000,2,0,netbridge.dll,6.01.7600.16385
AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7600.16490
Wave Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
File stream renderer,0x00400000,1,1,quartz.dll,6.06.7600.16490
ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.00.0007.3136
Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7600.16385
AVI Mux,0x00200000,1,0,qcap.dll,6.06.7600.16385
Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7600.16490
File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7600.16490
File Source (URL),0x00400000,0,1,quartz.dll,6.06.7600.16490
Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.7600.16385
AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
Haali Video Sink,0x00200000,1,0,splitter.x64.ax,1.09.0355.0021
Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7600.16385
Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7600.16385
BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7600.16385
MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7600.16490

WDM Streaming Tee/Splitter Devices:
Tee/Sink-to-Sink-Konvertierung,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

Video Compressors:
WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7600.16385
ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.00.0007.3136
MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7600.16490

Audio Compressors:
WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
PCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7600.16490
CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7600.16490

Audio Capture Sources:
Realtek Digital Input (Realtek ,0x00200000,0,0,qcap.dll,6.06.7600.16385

PBDA CP Filters:
PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7600.16590
PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16590
PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16590

Midi Renderers:
Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7600.16490

WDM Streaming Capture Devices:
,0x00000000,0,0,,
Realtek HD Digital input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio CD input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio Line input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

WDM Streaming Rendering Devices:
ATI HD Audio HDMI out,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HDA SPDIF Out,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

BDA Network Providers:
Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7600.16590

Multi-Instance Capable VBI Codecs:
VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385

BDA Transport Information Renderers:
BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7600.16385
MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7600.16385

BDA CP/CA Filters:
Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7600.16385
Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7600.16385
PTFilter,0x00200000,0,0,EncDec.dll,6.06.7600.16385
XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7600.16385

WDM Streaming Communication Transforms:
Tee/Sink-to-Sink-Konvertierung,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

Audio Renderers:
Realtek Digital Output (Realtek,0x00200000,1,0,quartz.dll,6.06.7600.16490
Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7600.16490
DirectSound: Realtek Digital Output (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7600.16490

---------------
EVR Power Information
---------------
Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality) 
  Quality Flags: 2576
    Enabled:
    Force throttling
    Allow half deinterlace
    Allow scaling
    Decode Power Usage: 100
  Balanced Flags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 50
  PowerFlags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 0
Attached Files
File Type: zip PNATI_Backup-1291755059.0.zip (62.3 KB, 10 views)
File Type: zip PNATI_Backup-1291752666.0.zip (62.3 KB, 7 views)
DjNDB is offline   Reply With Quote
Old 12/07/2010, 02:19 pm   #14
Kaldire
Senior Member
 
Kaldire's Avatar
 
Join Date: Nov 2006
Location: Sacramento California
Posts: 886
Send a message via MSN to Kaldire
Default

was this ver 2.0????
Kaldire is offline   Reply With Quote
Old 12/08/2010, 02:51 am   #15
Vainamoinen  Community Moderator
Community Moderator
 
Vainamoinen's Avatar
 
Join Date: Jun 2009
Posts: 6,641
Default

I'm rather sure nothing video-/WMP-related was on/running when I started the fatal round, but I could be wrong (Win 7 doesn't always show that very clearly).

I can be sure, however, that I exited Poker Night through the menu each and every time, so that's not it...
__________________

Moderators on the TTG forums are all volunteers from the community and still belong to the community. They are not employees of the company. The opinions expressed in their posts are those of individual fans and must not be confused with official company statements.
Vainamoinen is offline   Reply With Quote
Old 12/08/2010, 02:59 am   #16
Kaldire
Senior Member
 
Kaldire's Avatar
 
Join Date: Nov 2006
Location: Sacramento California
Posts: 886
Send a message via MSN to Kaldire
Default

win 7 64 bit? onboard video? widescreen monitor?
hate to sound like a broken record in asking

seems the testers on this rushed .. of course im not sure anyone runs onboard at telltale :P
but it should BE tested..

and widescreen I know they have soooo... gulp?

EDIT:
did you say you ran VLC AND a game? you are watching a movie trying to play a game?

it works with flash online stuff.. and some popcap games but this.. naaah
why have vlc open (vlc rocks btw cheers to you)
Kaldire is offline   Reply With Quote
Old 12/08/2010, 04:07 am   #17
DjNDB  Community Moderator
Community Moderator
 
DjNDB's Avatar
 
Join Date: Jan 2007
Location: Germany
Posts: 4,742
Default

Was the stat loss caused by the game crashing for everyone, or were there cases the stats were just gone the next start, without any indication the game crashed before?

You can check that out for past crashes by looking into windows event viewer. You can also copy the error logs from there and paste them here.
It would be interesting to see if it was FMOD related for most of you.



I think though that in any case the game should use a more reliable way to store the stats. They are a quite essential part of the gamers experience in a game like this.
It might be as simple as catching some exceptions to make sure the prefs.prop always gets closed properly.
But if the writing is interrupted by an unrecoverable error that would not help.
The game writes the prefs.prop very often. At least at startup, after every hand, and when it's closed. That's when a crash would be most critical.

It would be better to have that stats stored in some form of Transaction with at least some of the ACID properties. Then only the last Hand would be either stored, or lost, which is much more desirable in a game like this.
SQLite is one product which explicitly offers that for file based data storage. It can also be used commercially in every way for free according to the License.



Looking for errors in the event viewer
After a crash occuredm, take a look at the "application" part of windows "event viewer". Set a filter for "application errors" there to make it easier to find earlier crashes.
If you find anything related to the game you can copy the details by right clicking on the entry, and selecting the corresponding option. Than you can paste it into a Forum post.
DjNDB is offline   Reply With Quote
Old 12/08/2010, 05:12 am   #18
Vainamoinen  Community Moderator
Community Moderator
 
Vainamoinen's Avatar
 
Join Date: Jun 2009
Posts: 6,641
Default

My Poker Night never crashed, so I'm positive that I always left the game via menu. I do not have the VLC video player installed, I use WMP exclusively.
__________________

Moderators on the TTG forums are all volunteers from the community and still belong to the community. They are not employees of the company. The opinions expressed in their posts are those of individual fans and must not be confused with official company statements.
Vainamoinen is offline   Reply With Quote
Old 12/08/2010, 06:36 am   #19
TextureGlitch
Member
 
TextureGlitch's Avatar
 
Join Date: Oct 2006
Posts: 73
Default

Quote:
Originally Posted by DjNDB View Post
I think though that in any case the game should use a more reliable way to store the stats. They are a quite essential part of the gamers experience in a game like this.
It might be as simple as catching some exceptions to make sure the prefs.prop always gets closed properly.
But if the writing is interrupted by an unrecoverable error that would not help.
The game writes the prefs.prop very often. At least at startup, after every hand, and when it's closed. That's when a crash would be most critical.
Yeah, that's what I was thinking too. It's quite a bad oversight that the game can crash with an empty file at any point during execution.

I assumed that it was the pnati_save file that was corrupted, but it turns out you're right about this prefs file.

If I crash the game on startup and just replace the prefs.prop file with a backup, then all the stats return. So it's definitely a problem with the prefs file.

Incidentally, I get an appcrash in the same module as you do, the fmodex.dll
Code:
Log Name:      Application
Source:        Application Error
Date:          07/12/2010 21:22:04
Event ID:      1000
Task Category: (100)
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      X
Description:
Faulting application name: CelebrityPoker.exe, version: 2010.12.3.50720, time stamp: 0x4cf97084
Faulting module name: fmodex.dll, version: 0.4.30.3, time stamp: 0x4be351f9
Exception code: 0xc0000005
Fault offset: 0x00072658
Faulting process id: 0x65c
Faulting application start time: 0x01cb964c63698620
Faulting application path: d:\games\steam\steamapps\common\poker night at the inventory\CelebrityPoker.exe
Faulting module path: d:\games\steam\steamapps\common\poker night at the inventory\fmodex.dll
Report Id: a737cc90-023f-11e0-b126-001a920e7dfa
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2010-12-07T20:22:04.000000000Z" />
    <EventRecordID>713384</EventRecordID>
    <Channel>Application</Channel>
    <Computer>X</Computer>
    <Security />
  </System>
  <EventData>
    <Data>CelebrityPoker.exe</Data>
    <Data>2010.12.3.50720</Data>
    <Data>4cf97084</Data>
    <Data>fmodex.dll</Data>
    <Data>0.4.30.3</Data>
    <Data>4be351f9</Data>
    <Data>c0000005</Data>
    <Data>00072658</Data>
    <Data>65c</Data>
    <Data>01cb964c63698620</Data>
    <Data>d:\games\steam\steamapps\common\poker night at the inventory\CelebrityPoker.exe</Data>
    <Data>d:\games\steam\steamapps\common\poker night at the inventory\fmodex.dll</Data>
    <Data>a737cc90-023f-11e0-b126-001a920e7dfa</Data>
  </EventData>
</Event>
But judging by other responses in this thread, I don't think it matters how you crash the app on startup, but someone wasn't paying attention in transaction class

EDIT The behavior is the same with the old Poker exe and v2 as well.
I also found out that if I use an even older prefs.prop file, the stats are reverted back to that previous point. Which makes me wonder what the heck the pnati_save file is for if all the stats are in the pref file? o.O

Last edited by TextureGlitch; 12/08/2010 at 06:44 am. Reason: more info added
TextureGlitch is offline   Reply With Quote
Old 12/08/2010, 07:27 am   #20
Kaldire
Senior Member
 
Kaldire's Avatar
 
Join Date: Nov 2006
Location: Sacramento California
Posts: 886
Send a message via MSN to Kaldire
Default

odd.. if im not mistaken strongbads module did the same thing

fmodex.dll error...
how was that fixed? hmm
where is scoottttt!
Kaldire is offline   Reply With Quote
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Poker Night: Releases Nov 22 Jake Poker Night at the Inventory / Poker Night 2 316 02/06/2011 03:56 pm
Poker Night Problem -> Missing stats JoeBlack Game Support - General 1 11/23/2010 11:05 am
Poker Night at the Inventory Fails to Start Scorch_Mechanic Game Support - General 3 11/23/2010 02:16 am
Poker Face Remix; Poker Night WayneBrady Poker Night at the Inventory / Poker Night 2 3 10/31/2010 05:49 am


All times are GMT -8. The time now is 06:23 pm.


Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Telltale Games - © 2013 Telltale, Incorporated. All rights reserved.
Home  |   Store  |   Blogs  |   Forums  |   Product Support  |   Corporate Info  |   Press Releases  |   Jobs  |   Terms of Use  |   Privacy Policy