Just looking for a solution to a performance problem (HP)

Hi thank you for reading any attempt to help is greatly appreciated.
First off i am running on a HP P6-2100 8 GB of ram (4 of which are aftermarket) Windows 7 64 bit OS processor is AMD A4-3420 with Radeon HD graphics 2.8 GHz (i appologize if i am missing any important specs this is my first post) im also running an aftermarket Nvidia GeForce GTX 550 Ti graphics card. All drivers are up to date.
Now here is my issue. I feel that my computer is not amazing but it is pretty decent *atleast thats how i feel idk though* but i game a lot (mainly world of warcraft) im trying to make it so that i can run the game on higher graphics. when i first got my comp and card and all that good stuff i could run on max graphics and still be above 60 fps in game. Now its no where near able to do that. Im trying to find some way to bring life back into my computer. i have defragged and cleaned up my registry as well as repaired it multiple times i run anti malware programs at least once a week just to keep safe but if you guys have any ideas at all on what i could do to make my gaming experience better i would be all ears to hear them =D 
Thanks so much,
Gnome

Glad you referenced some specs. The problem is the A4.    Here are some reference comparisons for world of warcraft.
Battlenet    CPUBOSS    and my choice: Game-debate.   On Game-debate,  near the middle of page you'll find the "Can I Run It" settings.   Just plug-in your system (answer the prompts), and behold the rating.
I am a volunteer. I am not an HP employee.
To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
(2) HP DV7t i7 3160QM 2.3Ghz 8GB
HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
Both Customs use Rosewill Blackhawk case.
Printer -- HP OfficeJet Pro 8600 Plus

Similar Messages

  • Looking for SQL Solution to Very Unique Problem

    Hello,
    New here, thanks. I have what I think is an interesting problem. I really don't want to post it because the background and explanation is rather lengthy. It has to do with one table that holds some general info; there is a unique numeric primary key. Associated with this table are three different tables identical in structure, having only two fields: the primary key, and a code. The three tables correspond to test results performed by a different individual. For each entry in the main table, where there is one and only one entry for the primary key, the same test could have been performed one, two, or three times. So there could be one, two, or three different sets of codes describing the test results. Only one set of the test result codes is the correct one. And there is a hierarchy that determines which is the correct set of codes. Say the main table is called LR. LR is linked to three different tables, each of which has the exact same structure. The relationship between LR and each of these three tables is one to many. Call the three tables that hold test results SCR, QC, and PT. Some assumptions can be made. In the table LR there are two flag fields: Q_STATUS and P_STATUS whose values each are either Y or N. If P_STATUS=Y, then we are guaranteed a set of test result codes in the table PT, and this set of codes is always the final word; always the correct results. If P_STATUS=N but Q_STATUS=Y, then we are guaranteed to have a set of test result codes in the table QC, and if this is the case, then this set of codes is the final word. Now if P_STATUS=N and Q_STATUS=N, then we know there is a set of test result codes in the SCR table, we know there is one and only one set of test result codes, hence this set is the correct one. Another assumption that can be made, for any row in the LR table, there will ALWAYS be at least one set of test result codes in the SCR table. There may or may not be a set of test result codes in the QC and PT tables, and the flags in the LR table indicate if either is the case. Hope this makes sense so far. For many years I have been trying to figure out one SQL statement that will return the correct set of test result codes. Often I have to analyze data that relies on the results of a test (e.g. how many tests had the code 850 in the year 2011?). That's a simple example, but you get the idea. Since I have to determine which set of test result codes is the correct one to use, I've always had to rely on writing a PL/SQL procedure anytime I have to work with test result codes. I tend to use a conditional: IF (P_STATUS=Y) THEN /*the right answer is in the table PT*/ ELSIF (Q_STATUS=Y) THEN /*the right answer is in the table QC*/ ELSE /*the right answer is in the table SCR*/. I have a document with a little more detail, and an example. Or maybe this makes absolute sense to someone out there and they know exactly what to tell me! And let me say this is not a critical issue for me. I've been searching for this SQL statement for about 10 years now. I consider myself pretty proficient with SQL, but definitely not a guru. I'm thinking the solution I'm looking for might rely one some kind of full outer join on all three of the tables SCR, QC, and PT and then if those results could be linked to the LR table, and then maybe in the SQL statement use of DECODE might do it. I want one SQL statement that will return me the correct set of testing result codes. Hope this all makes sense. To anyone who has read it I thank you very much. I would be very happy to provide my document with further explanation and an example. Any response is greatly appreciated. Guess I have to keep coming back here now to see if anyone responded. Oh, I might add that we use a very old version of Oracle (8.0.3) but, if all goes according to plan, we should migrate to the most current version within the next year.
    Thanks,
    John Cardella
    Edited by: BluShadow on 21-Feb-2012 13:52
    Email address removed for your own benefit, unless of course you'd like spam bots to pick it up and send you lots of rubbish?

    Why do I keep three tables. Each sample that is evaluated is always screened by what I will call a "tech." Every so many cases the test must be repeated for quality control. If the findings of the initial testing or of a quality control test are found to contain abnormal results, then the test must also be repeated, this time looked at by a doctor. So I have what I refer to as the "main" table; the one that holds final data, which in my example I explained the two "flag" fields that indicate if the test was repeated. Every time a test is evaluated it is done by the same person, and the findings of an individual testing, or screening, are a set of test result codes. There is the "main" control table which I have called LR in my example. The reason I have the other three tables: one is used to store the test results of the initial screening (always done); one is used to hold the test results of a quality control case (may or may not be done); and one is used to hold the test results of an abnormal case that was screened by a doctor (may or may not be done). There is a separate table for each individual who may have done a screening.
    Let us consider the results of just one case. In the table LR we have something like this:
    | KEY | P_STATUS | Q_STATUS |
    | 100 | Y | Y |
    By default, for any entry in the LR table there is always a set of codes in the SCR table. We know a quality control was performed because QC_STATUS=Y, and we know it was screened by a doctor because P_STATUS=Y. So we would have three different sets of findings, each in one of the three tables:
    SCR TABLE: QC TABLE:
    | KEY | CODE | | KEY | CODE | | KEY | CODE |
    | 100 | 014 | | 100 | 13R | | 100 | 13R |
    | 100 | 13R | | 100 | 150 | | 100 | 170 |
    | 100 | 150 | | 100 | 170 | | 100 | 180 |
    | 100 | 160 | | 100 | 190 |
    The values in the three tables represent the findings of three different people who screened the test sample. Now suppose I combined all the data, I would suppose it would look something like this:
    | KEY | P_STATUS | Q_STATUS | KEY | CODE | KEY | CODE | KEY | CODE |
    | 100 | Y | Y | 100 | 014 | null | null | null | null |
    | 100 | Y | Y | 100 | 13R | 100 | 13R | 100 | 13R |
    | 100 | Y | Y | 100 | 150 | 100 | 150 | null | null |
    | 100 | Y | Y | 100 | 160 | null | null | null | null |
    | 100 | Y | Y | null | null | 100 | 170 | 100 | 170 |
    | 100 | Y | Y | null | null | null | null | 100 | 180 |
    | 100 | Y | Y | null | null | null | null | 100 | 190 |
    Since P_STATUS=Y I would want the result set returned to be {13R, 170, 180, 190}.
    But suppose P_STATUS=N and Q_STATUS=Y then I would want the result set to be {13R, 150, 170}
    And if P_STATUS=N and Q_STATUS=N then I would want {014, 13R, 150, 160}
    Of all of the sets of test results codes, only ONE is ever the final word (i.e. the right answer).
    So what I was trying to do is find a query that would give me what I want. And my apologies if there is a major design flaw. I always thought it was not that bad. But then I am no SQL guru either.
    To anyone who has read on further my most humble thanks. I really did not mean to waste anyone's time or be a pain in the ass.
    Thanks Again,
    -JC

  • HI i have tried so many times to import images, both pictures and video from my hard drive to elements 131, and it keeps coming up with the error message " .....has stopped working we are looking for a solution to this problem etc " please help!

    After taking days to upload elements 13 I am now having trouble even trying to import my images and videos into the program for editing. Each time I IMPORT files an error message comes up that says " ....has stopped working, we are looking for a solution to the problem and will notify you if a solution is found"  I have not been able to edit ANYTHING or even drag files/images to the time line.... is it me? is my computer too slow? surely if it was, then Adobe elements 13 would not have installed in the first place? please someone help me sort this out as I have a deadline to make for a docco! thanks in advance Lyddy

    From the Premiere Elements Information FAQ http://forums.adobe.com/thread/1042180
    •You MUST use an account with Administrator Privileges to run Premiere Elements
    •(Doing Run as Administrator http://forums.adobe.com/thread/969395 [says Encore and also for "All" versions of Premiere] will sometimes fix "odd" errors)
    •What version of Premiere Elements? Include the minor version number (e.g., Premiere Elements 12 with the 12.1 update)
    •What operating system? This should include specific minor version numbers, like "Mac OSX v10.9.4"---not just "Mac"
    •Has this ever worked before?  If so, do you recall any changes you made to Premiere Elements, such as adding Plug-ins, brushes, etc.?  Did you make any changes to your system, such as updating hardware, printers or drivers; or installing/uninstalling any programs?
    •Have you installed any recent program or OS updates? (If not, you should. They fix a lot of problems.)
    •What kind(s) of image file(s)? When talking about camera raw files, include the model of camera.
    •If you are getting error message(s), what is the full text of the error message(s)?
    •What were you doing when the problem occurred?
    •What other software are you running?
    •Tell us about your computer hardware. How much RAM is installed?  How much free space is on your system (C:) drive?
    •How many and what speed are your hard drive(s)... ie 5400rpm or 7200rpm or?
    And some other questions...
    •What are you editing, and does your video have an orange line over it BEFORE you do any work?
    •Which version of Quicktime do you have installed?
    •What is your exact brand/model graphics adapter (ATI or nVidia or ???)
    •What is your exact graphics adapter driver version?
    •Have you gone to the vendor web site to check for a newer driver?
    •For Windows, do NOT rely on Windows Update to have current driver information
    •-you need to go direct to the vendor web site and check updates for yourself
    •nVidia Driver Downloads http://www.nvidia.com/Download/index.aspx?lang=en-us
    •ATI Driver Autodetect http://support.amd.com/en-us/download/auto-detect-tool

  • Itunes launches fine however I cannot connect to the Itunes store.  It says that Itunes has stopped working and windows is looking for a solution.

    Everything seems fine until I try to access the ITunes store.  Then I get a message that ITunes has stopped working and that Windows is looking for a solution.  Then it tells me that no solution has been found and closes down Itunes.
    I can still sync music / podcasts to my ipod and iphone.  I am still getting podcast downloads automatically for the ones I have subscribed to.
    This is the first time this issue with not being able to access the Itune stores has happened to me.  I was just there 2 nights ago.

    Hello notime4,
    The article linked below details some useful troubleshooting steps that can help stabilize iTunes on your computer.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    Cheers,
    Allen

  • Trying to load flash file in iWeb and when I enter info in the "html snippet" box a "missing plug-in" message comes up (although i have adobe flash player in, if that's the plug-in they're looking for). Anyone have any similar problems or solution. Thanks

    I'm trying to load flash file in iWeb and when i enter info in the "html snippet" box a "missing plug-in" message comes up (although i have Adobe Flash player installed, if that's the plug-in they're looking for). Anyone have any similar problems or solutions. Thanks

    when i publish my site and vew it the page on the web it just comes up with the file name w/ the ,swf and the "mising plug-in" message below. if i click on the file name it displays the flash file but gigantic (the entire height of the page).totally perplexed!
    anyway, here is the code.
    <object classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000”codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0, 40,0”width=”244” height=”221” id=”ETrade_banner_Gumby_replay”><paramname=movie value=”ETrade_banner_Gumby_replay.swf”><param name=qualityvalue=high><param name=base value=”.”><embed src=”ETrade_banner_Gumby_replay.swf”quality=high width=”244” height=”221” name=”ETrade_banner_Gumby_replay”align=”” type=”application/x-shockwave-flash” pluginspage=”http://www.macromedia.com/go/getflashplayer”base=”.”></embed></object>

  • Looking for a solution or service to export data from a dynamic form into a database

    As the title of this discussion states, I'm looking for a solution or service to export data from a dynamic form into a database to be used for reporting. Creating the dynamic form is not a problem, it's getting it into a database that's more of a nuisance. A dynamic form is needed in order to provide skip logic, hide/reveal, and other similar dynamic features.
    The database hasn't been created, so just looking for the easiest, more effective and dependable solution. The key is being able to run reports off the data later.

    So i set up 2 residential grade routers to test this out. Seems to be working okayish. I believe with directional antenae routers I should achieve what I need.
    As for security I configured each device separately. I set them so only allow the MAC address of the other through wireless. This seems to be the best system for me. Once they are connected even if a MAC is spoofed of the other router it drops automatically because they are always connected. My wired devices get plugged in and recieve an IP from my main network.
    There more testing to be done, but it seems to be working.
    Thanks for your input and suggestions guys. I will be marking this topic as answered.

  • I have been looking for a solution for making my videos capable of playing on anything such as: DVD player, Mac, PC, etc.

    I have been looking for a solution for making my videos capable of playing on anything such as: DVD player, Mac, PC, etc. I have not found a format that will play with all of these. Is there a format, software, or do you encode it? I am new to production. I can make a video and make it work for a certain thing just not all.

    There is no such thing as universal format and that is that. You are looking for the magic pearl that doesn't exist and rather than waste your time on a futile search, it would be better to actually read up on the various formats and their limitations, including how playback devices may or may not support this and that.
    Mylenium

  • PRE 8.0 Just looking for a way to delete titles

    I have just started using PRE 8.0 and was adding titles yesturday, having learned it in an online adobe tutorial. However I could not find the delete button to remove the title once created. I was dragging different titles from the title menu onto the preview screen and playing with them a lttle bit. I noticed the little red line appearing down in the timeline representing the added title, but could not delete it again. i tried just looking for a delete button or a trashcan. i search all the menus around that screen. i tried highlighting and pressing keyboard delete. i tried right clicking the title in the preview pane and looking for a delete options. I would be glad to be glad to solve this little technique?? Other than that happy with its performance on my new Sony Vaio. I would also be keen to be pointed to a online tutorial to goes slowly though how to make a simple video

    You need to use the scroll button along the right side of the timeline to scroll up.
    The title is a clip on an upper video track.
    You can find out more about using this program in my free Basic Training with Premiere Elements tutorials on Muvipix.com and in my books, which are available on Amazon.

  • Can anyone help on integrating Unifier with WebCenter Portal ? We are looking for a solution where we can show Unifier pages within WebCenter Portal application. Is this possible ?

    Can anyone help on integrating Unifier with WebCenter Portal ? We are looking for a solution where we can show Unifier pages within WebCenter Portal application. Is this possible ?

    If you simply would have posted here first, there are plenty of people who would have informed you of the current policy to have a data plan active on an account during the entire contract if purchasing a discounted smartphone.
    Unfortunately, there are just as many on here who would claim the people informing you about this policy of being Verizon plants spreading disinformation and trying to make people afraid to upgrade via this route.
    Yes this is a new policy, one which has been pointed out multiple times in these forums.  Good luck, but I doubt you will have an outcome over this which will make you happy.
    Verizon is closing as many loopholes to keep unlimited data as they can.

  • Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it

    Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it at all.

    Without proper system information and the application logs nobody can tell you much.
    Troubleshoot Creative Cloud download and install issues
    Mylenium

  • I'm getting popup notices that Firefox has a problem, and Windows is looking for a solution; then it closes Firefox and says Windows will let me know if it finds a solution. No crash report window comes up.

    Firefox is my default browser on my new laptop, with OS Windows 7. I've now had several instances where a Windows popup comes up saying Firefox has developed a problem and may have to close. It also indicates Windows "is looking for a solution to the problem." No solution is found, however, and Firefox is forced to close, with the happy notice that Windows will let me know if it finds a solution to the problem. If there is any tech data on the crash, I'm not sure where to find it, and no Firefox crash report window comes up. I thought it was an anomaly the first time, but this has now occurred at least 4 times in the past several days.

    See:
    * https://support.mozilla.com/en-US/kb/Firefox%20crashes%20when%20you%20open%20it

  • I want to set up 5 different ipods to sync from one library, but want to be able to control what is synced to each ipod and have it remember that for future synching and just look for new songs and not sync all the other music in the library

    I want to set up 5 different ipods to sync from one library, but want to be able to control what is synced to each ipod and have it remember that for future synching and just look for new songs and not sync all the other music in the library

    Click here for options.
    (58961)

  • I have a MacBook Pro 5,4 running OSX 10.6.8 and Safari 5.1.10. A website i like has a known bug with 5.1.10 and recommends I install a newer version of Safari or use Firefox or Chrome. Just looking for advice on the best approach. Thanks!

    I have a MacBook Pro 5,4 running OSX 10.6.8 and Safari 5.1.10. A website i like has a known bug with 5.1.10 and recommends I install a newer version of Safari or use Firefox or Chrome. Just looking for advice on the best approach. Thanks!

    Unfortunately, Safari cannot be updated past 5.1.10 on a Mac running v10.6.8.
    So, the options are to upgrade to a newer OS X or use Firefox or  Chrome.
    Be aware, Apple no longer support Snow Leopard v10.6 >  www.ibtimes.com/apple-kills-snow-leopard-os-x-106-no-longer-receives-security-u pdates-1558393
    See if your Mac can run v10.9 Mavericks >  OS X Mavericks: System Requirements
    If so, you can download and install Mavericks for free from the App Store.
    Read prior to upgrading >   Upgrading to 10.7 and above, don't forget Rosetta! | Apple Support Communities

  • I am looking for software to store photos with.  I am not a fancy photographer, and really am just looking for the digital version of a photo album. iPhoto is not cutting it, mainly because it does not back up and restore easily on an external HD.

    I am looking for software to store photos with.  I am not a fancy photographer, and really am just looking for the digital version of a photo album. iPhoto is not cutting it, mainly because it does not back up and restore easily on an external HD.

    That's how Time Machine and iPhoto now work.  Restore the library to one of the external HDs, check it for the photos you want, export them to the boot drive and delete the restored library.
    If you know the file name of the photo you're looking for you can search for them in the TM backup using Find Any File.
    My workflow allows me to do that:
    1 - upload new photos to a folder on the Desktop.
    2 - name the folder to represent the contents and date: 01/03/10-Toads Bday
    3 - use a file renaming app to sequentially rename the photos in the folder to: 2010-01-03-Toads Bday-001.JPG,  -002,JPG, -003.JPG,  etc.
    4 - import the folder into iPhoto creating an Event with the same title as the folder.
    Now I can search for those file by file name with any app of my choosing.

  • Looking for a solution to the consumption of the VM systems in Azure Portal that reports and notified by mail

    Hi
    I am looking for a solution to the consumption
    of the VM systems in Azure Portal that reports and notified me by mail.
    Please suggest.
    Thanks, Kk

    Hi Kk,
    what  notifications are you expecting? like Machine down etc.?
    you can make use of monitoring alerts and notifications in Azure, this will allow you to configure different 
    metric related to your virtual machines and other azure service you use.
    Specifically for VMs you can configure different metric for the VM host OS and you can also configure web end point status metric (will monitor situation like machine down or offline)
    here are two good reads
    Understanding Monitoring Alerts and Notifications in Azure
    Khalid's blog on
    Microsoft Azure Virtual Machine Monitoring with Azure Diagnostics Extension
    Hope this helps,
    Please mark as answered if it helped
    Vishal Narayan Saxena, MVP
    http://twitter.com/vishalishere
    http://www.ogleogle.com/vishal/

Maybe you are looking for

  • Create user with read access for all tables SAP SID .*

    Hello all, could you please help me ? I would like to grant select privilege on all tables SAP<SID>.* for newly created user. I have created standard database user (not exclusive). I`m able to grant select for individual tables, but I would like to g

  • Prioritizing synchronous messages in NW2004

    Hi all, Stupid question time but I have spent an age looking at this. I understand standard queue prioritization (XBT1, XBTA etc) is only relevant for asynchronous interfaces in XI NW2004, but I have a synchronous interface that is Web Service -> XI

  • [svn:fx-trunk] 8581: asdoc edits: bug fix FLEXDOCS-1000

    Revision: 8581 Author:   [email protected] Date:     2009-07-15 08:47:47 -0700 (Wed, 15 Jul 2009) Log Message: asdoc edits: bug fix FLEXDOCS-1000 Ticket Links:     http://bugs.adobe.com/jira/browse/FLEXDOCS-1000 Modified Paths:     flex/sdk/trunk/fra

  • Camera No Longer Saving Images

    Hey guys, ok so I have had my phone since the beginning of October and have had no issues. Since yesterday though my phone has stopped taking photos. It appears to capture the photo just fine and when I click view they are all there but appear to be

  • IPlanet Portal 3.0 Channel Layout problem

    Problem with channel placement We are currently running iPlanet Portal 3.0 sp5. We have defined channels and tabs for the portals desktop. Here are a few of our settings: 1. Display/Layout = Thin-Thick-Thin 2. We have our tabs defined referencing the