Direct3DDevice9ent failed: An invalid parameter was passed to the...

Page 2 of 9 FirstFirst 1234 ... LastLast

  1. Posts : 49
    Microsoft Windows 7 Ultimate 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #11

    Update:
    Yes It ran even though it had a very low FPS and the Temperatures were almost permnanently above 90 o_o.
      My Computer


  2. Posts : 2,072
    Windows 7 x64 Professional SP1
       #12

    Okay. Thats somewhat good news, it's not uncommon to see those temps on a laptop.

    If you had a legit problem with heat, your laptop would shut itself off due to the heat generated.

    Hmm... you mentioned that every game except Crossfire is affected?

    How about this 3D benchmark from Unigine?

    Heaven DX11 Benchmark | Unigine: real-time 3D engine (game, simulation, visualization and VR)
      My Computer


  3. Posts : 49
    Microsoft Windows 7 Ultimate 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #13

    I don't play that much games, but CF is the only one working of those that I play.
    (My version: Crossfire Europe - Free to play online FPS Action game UK version: Z8Games - Free Gaming. Evolved.)

    I am now gonna try this Benchmark, brb.
      My Computer


  4. Posts : 49
    Microsoft Windows 7 Ultimate 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #14

    Update: Alright, ran it on 1920x1080 everything was alright, FPS 10-15.
      My Computer


  5. Posts : 2,072
    Windows 7 x64 Professional SP1
       #15

    Very interesting indeed.

    We can rule out a graphics hardware problem now, which is good.

    The only thing is that, I'm not sure how to proceed from here, considering you've tried all of the suggested software solutions. (Graphic Card Drivers, Direct X, etc).

    The only i can recommend right now is to look at this generalized tutorial for troubleshooting gaming problems:-

    Tips on Troubleshooting Game Issues

    There'll be a number of steps you've done, omit them and try out the rest. Good luck.
      My Computer


  6. Posts : 49
    Microsoft Windows 7 Ultimate 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #16

    Well this guide didn't really help :/
      My Computer


  7. Posts : 2,072
    Windows 7 x64 Professional SP1
       #17

    5atcat said:
    Well this guide didn't really help :/
    I know, I just wanted to be thorough and offer you all the options available. Most forums i checked do not even have the solution to this problem.

    I'll call for some insight from the others.
      My Computer


  8. Posts : 49
    Microsoft Windows 7 Ultimate 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #18

    That would be nice because I really want to play :/
      My Computer


  9. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #19

    Just a shot.

    I would like for you to run the included script.

    How to run the script and the script follow.

    When finished, upload the ComputerInfo.txt file which lands on your desktop.

    # **********************INSTRUCTIONS**************************
    # STEP 1 *****************************************************
    # RUN PowerShell as administrator
    # WIN key | type POWERSHELL | do NOT hit ENTER |
    # in the resulting PROGRAMS list, right-click on WINDOWS POWERSHELL |
    # choose "Run as administrator" from the resulting list
    # Click on the YES button (if such appears)
    #
    # WIN key = key with Microsoft log on top
    # for the guru:
    # WIN key | type POWERSHELL | CTRL+SHIFT+ENTER key combo | ALT+Y keycombo
    # ************************************************************
    # STEP 2 *****************************************************
    # COPY, using CTRL+C, every line of script down thru both EXIT statements
    # PASTE into Powershell
    #----Right-Click at the PowerShell Prompt
    #----(Ctrl+V does not work)
    # Start copying with first line without a # at start of the line
    # Note: Actually, you can paste the entire file if you rather
    #-------Lines starting with a # are ignored by PowerShell
    # ************************************************************
    # ***************** NOTE - POWERSHELL VERSION*****************
    # if you receive this error msg:
    #--Get-WinEvent: The system can not find the path specified
    # you need to update your PowerShell
    # you must be using Powershell 2.0 or later.
    #
    # To determine your Powershell version:
    #---Run PowerShell
    #---enter $host.version
    #---you should see at least:
    # Major Minor Build Revision
    # ----- ----- ----- --------
    # 2......0......-1.....-1
    #
    # If you do not see the above, update your Vista/Win 7.
    # ************************************************************
    # *************** NOTE - EXECUTION POLICY*********************
    # If you haven't set the execution policy, you may need to:
    #---Run PowerShell
    #---enter Set-ExecutionPolicy -executionpolicy remotesigned
    # ************************************************************

    ==============================================

    Script:
    # ***********************************************************************
    # Puts COMPUTERINFO.TXT on your desktop
    # COMPUTERINFO.TXT contains info about your bios and your computer system
    # ***********************************************************************

    function get-ID 
      
    param ([string]$title, [int]$arraycnt, [int]$arrayndx
      
    $id " " $title " "
      
    If ($arraycnt -ne 1) {$id $id + [string]$arrayndx " "}
      
    $id }
    function 
    get-title param ([string]$id
      
    $hashes = ([int](51 $id.length)/2)
      
    $hashstr '#' $hashes
      $title 
    $hashstr $id $hashstr
      
    If ($title.length -le 51) {$title += "#"}
      
    $title  }
    $sterne "*" 79
    $obj 
    = New-Object PSObject
    $bios 
    gwmi win32_bios
    $id 
    get-id "BIOS" 1 0
    $obj 
    Add-member -membertype noteproperty -name (Get-title $id ) -value $sterne
    $obj 
    add-member -membertype noteproperty -name ($id "Name") -value($bios.name)
    $obj add-member -membertype noteproperty -name ($id "Manufacturer") -value($bios.manufacturer)
    $obj add-member -membertype noteproperty -name ($id "Release Date") -value($bios.converttodatetime($bios.releasedate))
    $obj add-member -membertype noteproperty -name ($id "Serial Number") -value($bios.SerialNumber)
    $CS  gwmi Win32_ComputerSystem   
    $id 
    get-id "COMPUTER SYSTEM" 1 0
    $obj 
    Add-member -membertype noteproperty -name (Get-title $id) -value $sterne
    $obj 
    add-member -membertype noteproperty -name ($id "Manufacturer") -value($cs.manufacturer)
    $obj add-member -membertype noteproperty -name ($id "Model") -value($cs.model)
    $obj add-member -membertype noteproperty -name ($id "Primary Owner") -value($cs.primaryownername)
    $obj add-member -membertype noteproperty -name ($id "Type") -value($cs.systemtype)
    $obj add-member -membertype noteproperty -name ($id "Total Memory") -value(([string][int]($cs.totalphysicalmemory/1073741824) + " GB"))
    $obj add-member -membertype noteproperty -name ($id "User Name") -value($cs.username)
    $CSprod  gwmi Win32_ComputerSystemProduct 
    $obj 
    add-member -membertype noteproperty -name ($id "Product Name") -value($csprod.name)
    $obj add-member -membertype noteproperty -name ($id "Version") -value($csprod.version)
    $obj add-member -membertype noteproperty -name ($id "Identifying Number") -value($csprod.identifyingnumber)
    $obj add-member -membertype noteproperty -name ($id "Vendor") -value($csprod.vendor)
    $obj $env:userprofile\desktop\COMPUTERINFO.TXT

    EXIT
    EXIT 
    =========================
    thanks,
    karl
      My Computer


  10. Posts : 49
    Microsoft Windows 7 Ultimate 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #20

    Alright karl, here is it:

    Zippyshare.com - COMPUTERINFO.TXT

    :)
      My Computer


 
Page 2 of 9 FirstFirst 1234 ... LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 07:45.
Find Us