Win XP problem (i think)

I just installed a new mobo and processor and I have issues getting to windows.  according to the diagnostic leds the comp is fine up until the OS boots.  At that point I get an error message saying that windows has detected a virus.  It then immediately reboots.
The strange thing is that if I put the HD back in whats left of my old computer it boots to windows just fine, no virus message.  At first I figured it was a windows issue, but now that I know windows is ok I'm very confused.  I thought about reformatting, but I dont want to unless absolutely necessary.
mobo is an 865PE neo2, processor is a 2.8 prescott
I'd list my psu specs, but I have no idea how to properly do so.  I know where the #s are just not what they mean, so for now all im gonna say is that its a 400w supply :(

It sound's like you are trying to move a hard drive with windows already installed on it from one board to a different board. This doesn't really work that well, and a clean install is usually the only way to go.
Since you can boot up with your old board you might try:
1. Disable your anti-virus protection.
2. Delete all hardware from your device manager.
3. Power down without rebooting.
With any luck you will then be able to boot on the new box and you can start installing drivers. But I have my doubts on this.
You will also have to reactivate windows as changing the motherboard is a major change.

Similar Messages

  • I have a problem with iPhone is that I can replace it at points of sale in the U.S. because I bought from Saudi Arabia because the problem I think in the hard ware software worked more than 3 times did not fix

    dears,
    I have a problem with iPhone is that I can replace it at points of sale in the U.S. because I bought from Saudi Arabia because the problem I think in the hard ware I do resoftware more than 3 times did not fix.
    Network also always missing.
    I am living in KS Wichita. I hope you help me pleas.
    Regards.

    iPhone warranty is not international. You will have to return your
    iPhone to Saudi Arabia for repair/replacement. Either take it back
    yourself or send to friend/relative for them to take to Apple. Apple
    will not accept international shipments for repair nor will Apple
    ship repaired/replaced iPhones out of the country where the repair
    was done.

  • I have a question my iphone4s has a problem when updated iOS8 there will be freeze problem i think iOS8 is not supported in 4s!!!!!!!!!

    i have a question my iphone4s has a problem when updated iOS8 there will be freeze problem i think iOS8 is not supported in 4s!!!!!!!!!.
    one more question when i phone5 update with iOS 8.1.2 this iOS supported iphone5???

    Hi Ios 8.1.2 Should work on iPhone 4s / 5 You may have a bug Backup to  cloud over WiFi Then Restore back to Factory  Settings This will make iPhone as new. Use same Apple ID & you will get your Apps & Data back Do Restore over your WiFi. Cheers Brian

  • I am having the same problem I think.  With mobileme you simply copy documents to the idisk folder and then synch.  I cannot seem to sink that folder anymore.  Any idea as to how I can simply copy folders to icloud and then access the MS Word and PDF file

    I am having the same problem I think.  With mobileme you simply copy documents to the idisk folder and then synch.  I cannot seem to sink that folder anymore.  Any idea as to how I can simply copy folders to icloud and then access the MS Word and PDF files on my iphone?

    Apple never bopthered to explain that this would happen
    Your iDisk is still accessible after moving to iCloud in exactly the same way as before. Nothing is deleted until June 30th 2012.
    , so I could easily have lost ALL of the files I kept on iDisk.
    No, you couldn't. Firstly, nothing was deleted from your iDisk. Secondly, any files stored on your iDisk should never be your only copy. Even if your iDisk spontaneously combusted, you should keep local backups elsewhere.
    Does Apple WANT people to move their storage elsewhere and stop paying Apple for it?
    Yes. Apple doesn't provide such a service anymore, nor are you paying them for it.
    Apple has made no effort to suggest remedies for the problem it has given iDisk users
    They've provided instructions on how to download your files from your iDisk. What you do with them after that is your choice.

  • TS1459 Win 7 , itunes store will not accept Apple ID, on the diagnostic program says secure link failed spoke to tec.dept they say Win security problem ,, turned all off problem still the same any ideas please

    TRYING TO AUTHORIZE MY COMPUTER>>>>>>>on the diagnostic program says secure link failed spoke to tec.dept they say it's a Win security problem ,, turned all off problem still the same any ideas please Ipad ,
    (((Strange thing is Apple want me to purchase assistance to enable me to buy from thier store)))

    You should send this to Apple.

  • Wine : sound problem

    i installed the game sof2 by wine.
    the problem is that the sound in the game is bad
    do u have solution?
    thnak u

    You can check winecfg -> Graphics to see if Direct3D Vertex Shader Support is set to hardware.  If it isn't, switch it.  Otherwise it's probably just a bug with emulating that game.
    Here's the linux gamer's howto on the game; but it looks like they didn't have much trouble with it so it probably won't be much help.
    Also if you don't mind, please don't post the same thread in multiple topics.  Thanks.
    Last edited by jb (2007-02-21 02:33:09)

  • [Win/CS3] Problem with tree view nodes display In Release Version of InDesign

    b [Win/CS3]
    Hi All,
    I am Facing a problem from last few days.I have a dialog on which i have a treeview ListBox.I am filling this listBox dynamically.On a Button click Event.
    My requirement is to show Some text value on the node and Index value on the back end.So When i select String1 the index1 should be Selected.
    b This Listbox is working fine ON Debug Version. But Crashing On Release Version.That seems Strange to me..........?????????
    b in DialogObserver::Update on button click event
    NodeID node = IDCGridNodeID::Create(IndexX);
    treeMgr->NodeAdded(node);
    b and in TreeviewMgr::ApplyDataToWidget
    TreeNodePtr<IDCGridNodeID> nodeID(node);
    PMString IndexNo= nodeID->GetName();
    I am going to database and retrieving string value according to that
    IndexNo.
    WCHAR Buf[200];// this contains value retrieve from database
    Then i am converting WCHAR[] to CHAR[] BY using
    size_t origsize = wcslen(Buf) + 1 ;
    const size_t newsize = 100;
    size_t convertedChars = 0;
    char nstring[newsize];
    wcstombs_s (&convertedChars, nstring, origsize, buf, _TRUNCATE);
    PMString StringToDisplay(nstring);
    //Till here its working fine
    But when i am setting this value as Node name
    style.Translate();
    setNodeName( widgetList, StringToDisplay, kIDCTVTextWidgetID );
    and function return kTrue; statement executed The application is crashing.
    With error showing
    b INdesign Encountered a problem Needs to close.
    I Am not able to find out why this is not working on Release while it is working fine on debug version..???????????????????
    Is I am missing or Made some changes For release version..????
    Thanks,

    Hi Michael,
    Thanks for your reply.
    The lines
    NodeID node = IDCGridNodeID::Create(IndexX);
    treeMgr->NodeAdded(node);
    are working fine for Both Debug N Release version.The Application Is crashing In tree view manager class as i explained.
    while it works fine without having even a single warning in debug version.
    I read the document and i find out if i want to add node in treeview i have to call
    treeMgr->NodeAdded(node);
    which will call manager
    b and in TreeviewMgr::ApplyDataToWidget
    i am getting my node name as
    TreeNodePtr<IDCGridNodeID> nodeID(node);
    PMString IndexNo= nodeID->GetName();
    I don't think that something is wrong in this but i am not sure becoz i am new in indesign development.
    for adding nodes i referred the SDK examples.I found the same code for adding.

  • Crazy Guild Wars/WINE/Graphics Problem

    Recently I've gotten back into Guild Wars (and subsequently dropped off the forums like a stone), but I have a very bizarre issue with it. Every so often, and I have no idea why because error reports haven't turned up anything, I get a graphics failure, the monitor turns off as if it isn't receiving a signal or one of the sync rates is too high, and a fan in my computer, presumably on the graphics card, becomes audibly louder and faster. This only happens with Guild Wars on WINE, nothing else will cause it to occur. Also, it doesn't happen at precise intervals or after a certain number of hours, it seems to be completely random. I've had it happen on load, 5 minutes in, a few hours in, and on a day off where I was just being lazy, I had ten straight hours of gameplay and no problems whatsoever. I've gone over all of my logs, and absolutely nothing is turning up to clue me into the problem.
    My computer is quite new, I purchased it this April. It has an Nvidia 9600GT graphics card, the drivers for which have been out of beta for a while now and have acted quite well with everything else, including Quake 4, ET:QW, Prey on WINE, and Mount&Blade on WINE. Previously I was using the Nvidia installer to handle the driver, but both it and the Arch package have the same problem, in case there was any doubt there.
    Any help is very much appreciated, and while the problem may not best be suited to these forums, even getting the slightest hint as to what could be going on would be great help, as I'm completely in the dark on this one.

    Launching the game with WINEDEBUG=+all wine Gw.exe causes so much debugging information to pass that it slows the entire process to a crawl. It took two full minutes to even display the GW "connecting to ArenaNet" window to appear, much less connect and complete, something which usually takes 1-3 seconds max. It would be impossible to test the game itself properly, if at all, with that option set.
    I can also confirm now that using the xorg.conf fix won't solve the problem, as 10 minutes in I had another blackout. That fix seems to be for a much older 5200 card on a CRT though, the solution for which is not going to mesh as well with a 9600 running a 22" LCD.
    It could also be an issue with the monitor now that I think of it, which is an LG 226WTY @1680x1050, but I have my doubts that it lies at the bottom of all this, as I've heard MPD stop playing when I've had it on and this problem has occured, so I think it has something to do with the system itself, be it kernel or internal hardware, more than the monitor.
    Thanks for the ideas though, too bad they didn't solve the issue.
    P.S. The more I think about it this might very well be a kernel+WINE issue, as I'm also unable to ctrl+alt+backspace out of X to the command line when the blackout occurs, which could mean the keyboard is being disabled by a kernel panic of some kind, thus causing the problem with the graphics card. Nothing has appeared in the logs though, which is odd.

  • Extreme Win 7 Problems

    I have been having a host of problems with getting Windows to run on my Machine.  I have tried Win 8, Win 8.1 and Win 7.  I am seeing hangs on log off, white blank icons (fixable but occurs regular), extremely long installs of programs and even
    delays between icon clicks until program GUI is visible of up to a minute.
    I have all updated drivers, what Windows Updates will install (Win update hangs too) and I am running on an AMD Bulldozer 8 Core with 32 GB Ram, 2X Nvidia GTX 570, Dual SSD Drives, etc.  The Machine used to be stable for over a year even through Windows
    8 Beta etc.
    I think I have active hackers hacking my home network and I have captured a strange LAN Ethernet Log on my Router called Sacred Morals.  Today I found this and I am looking for a professional opinion (credentials would be great in case I need to go
    to law enforcement with the information).
    Here is a screen grab of my Windows Credentials I noticed today:  The VirtualApp/didlogical entry seems strange to me.
    Also, this was logged on my ATT Modem / Router.  Is their anyway to spoof a router log to say Ethernet lan from offsite?  It makes me feel that they were in my home to do this?  Any feedback is much appreciated.

    Hi,
    According to my experience, I thought it could't be achieved to spoof a router log to say Ethernet Lan from offsite.
    Roger Lu
    TechNet Community Support

  • HT204053 I want to play newly purchased music but cant, i get the message "You can use iTunes Match on this computer with just one Apple ID every 90 days. (mobileme family pack is the problem i think)

    I purchase a new album on my phone but then cannot download it to my laptop -  I get the message:
    "You can use iTunes Match on this computer with just one Apple ID every 90 days. All I can think is that the problem stems from purchasing a mobileme family & some of the music being my daughters. (she is 9 & I need to be ble to listen to more than Katy Perry & Justin Bieber) Please help! :-(

    Welcome to the Apple Community.
    Youll get that message when you change the iTunes account you are logged into, you can't keep changing it.

  • Safari crashes my macbook pro, it "restarts because of a problem," I think it is a kernel panic. How do I manage this?

    I have a late 2011 15", 2.3 GHZ intel core i7 macbook pro with 16GB of ram. I recently partitioned the computer using bootcamp and before doing this had the computer upgraded to Mavericks 10.9.5 . In order to partition my computer we had to restore it to factory settings so there is almost nothing on here.. my safari and google chrome were crashing before all these changes and my computer was sometimes "restarting because of a problem". I think most times that it did this I had safari or chrome up and running or at least open in the background. I also recently had someone test my hard drive and nothing is wrong with that so I believe this is some sort of software problem.
    Now my google chrome works as long as I am not signed into my account, but safari is un-usable. It crashes and then makes my computer "restart because of a problem." the computer seems to be fine besides these web browsing issues.
    I have disabled my extensions for safari but none were listed to disable anyways. I have the lengthy crash report from a recent crash and will post if needed.
    Thank you!

    Thank you for your response!! I will definitely try that out. Here is the error:
    Anonymous UUID: 6FD5C430-62AC-79AC-471A-E49A0ED4F778
    Sat Dec 20 21:41:51 2014
    panic(cpu 0 caller 0xffffff80096c63e7): "pmap_page_protect() " "pmap=0xffffff80358564b8 pn=0x600b2 vaddr=0x1763f1000\n"@/SourceCache/xnu/xnu-2422.115.4/osfmk/i386/pmap_x86_common .c:1336
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81f5853a50 : 0xffffff8009622f79
    0xffffff81f5853ad0 : 0xffffff80096c63e7
    0xffffff81f5853b90 : 0xffffff80096922f3
    0xffffff81f5853bf0 : 0xffffff8009692626
    0xffffff81f5853c60 : 0xffffff800968525e
    0xffffff81f5853d50 : 0xffffff8009687150
    0xffffff81f5853de0 : 0xffffff800963cd5e
    0xffffff81f5853e30 : 0xffffff80099d3447
    0xffffff81f5853e60 : 0xffffff80099d3240
    0xffffff81f5853ea0 : 0xffffff80099d2867
    0xffffff81f5853f00 : 0xffffff80099d3569
    0xffffff81f5853f50 : 0xffffff8009a40c63
    0xffffff81f5853fb0 : 0xffffff80096f4176
    BSD process name corresponding to current thread: coreservicesd
    Mac OS version:
    13F34
    Kernel version:
    Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    Kernel UUID: 9477416E-7BCA-3679-AF97-E1EAAD3DD5A0
    Kernel slide: 0x0000000009400000
    Kernel text base: 0xffffff8009600000
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 12693878949245
    last loaded kext at 10026402479079: com.apple.filesystems.smbfs     2.0.3 (addr 0xffffff7f8bf72000, size 335872)
    last unloaded kext at 399101944447: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f8bf72000, size 57344)
    loaded kexts:
    com.apple.filesystems.smbfs            2.0.3
    com.apple.driver.AudioAUUC           1.60
    com.apple.filesystems.ntfs    3.11
    com.apple.driver.AppleHWSensor   1.9.5d0
    com.apple.driver.AGPM        100.14.34
    com.apple.filesystems.autofs            3.0
    com.apple.iokit.IOBluetoothSerialManager            4.2.7f3
    com.apple.driver.AppleMikeyHIDDriver     124
    com.apple.driver.AppleMikeyDriver           2.6.3f4
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.iokit.IOUserEthernet       1.0.0d1
    com.apple.driver.AppleIntelHD3000Graphics       8.2.4
    com.apple.kext.AMDFramebuffer    1.2.4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport           4.2.7f3
    com.apple.driver.AppleSMCLMU     2.0.4d1
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.driver.AppleHWAccess   1
    com.apple.driver.SMCMotionSensor           3.0.4d1
    com.apple.driver.AppleMuxControl            3.6.22
    com.apple.driver.AppleLPC  1.7.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleIntelSNBGraphicsFB          8.2.4
    com.apple.driver.AppleMCCSControl          1.2.5
    com.apple.driver.AppleSMCPDRC   1.0.0
    com.apple.AMDRadeonX3000         1.2.4
    com.apple.kext.AMD6000Controller           1.2.4
    com.apple.driver.AppleThunderboltIP       1.1.2
    com.apple.driver.AppleUSBTCButtons        240.2
    com.apple.driver.AppleUSBTCKeyboard    240.2
    com.apple.driver.AppleIRController            325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless      1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN           1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.BootCache            35
    com.apple.iokit.SCSITaskUserClient            3.6.7
    com.apple.driver.XsanFilter 404
    com.apple.driver.AppleUSBHub      683.4.0
    com.apple.iokit.IOAHCIBlockStorage           2.6.0
    com.apple.driver.AppleSDXC           1.5.2
    com.apple.iokit.AppleBCM5701Ethernet   3.8.1b2
    com.apple.driver.AppleFWOHCI      5.0.2
    com.apple.driver.AirPort.Brcm4331           700.20.22
    com.apple.driver.AppleAHCIPort     3.0.5
    com.apple.driver.AppleUSBEHCI     660.4.0
    com.apple.driver.AppleSmartBatteryManager      161.0.0
    com.apple.driver.AppleRTC  2.0
    com.apple.driver.AppleACPIButtons           2.0
    com.apple.driver.AppleHPET           1.8
    com.apple.driver.AppleSMBIOS       2.1
    com.apple.driver.AppleACPIEC        2.0
    com.apple.driver.AppleAPIC            1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          217.92.1
    com.apple.nke.applicationfirewall   153
    com.apple.security.quarantine        3
    com.apple.driver.AppleIntelCPUPowerManagement        217.92.1
    com.apple.kext.triggers         1.0
    com.apple.iokit.IOSerialFamily         10.0.7
    com.apple.driver.DspFuncLib          2.6.3f4
    com.apple.vecLib.kext           1.0.0
    com.apple.iokit.IOAudioFamily         1.9.7fc2
    com.apple.kext.OSvKernDSPLib      1.14
    com.apple.iokit.IOFireWireIP           2.2.6
    com.apple.iokit.IOSurface     91.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport            4.2.7f3
    com.apple.iokit.IOBluetoothFamily  4.2.7f3
    com.apple.driver.AppleBacklightExpert     1.0.4
    com.apple.iokit.IONDRVSupport      2.4.1
    com.apple.driver.AppleGraphicsControl     3.6.22
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.AppleSMBusPCI   1.0.12d1
    com.apple.driver.AppleSMBusController    1.0.12d1
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.iokit.IOAcceleratorFamily           98.23
    com.apple.kext.AMDSupport            1.2.4
    com.apple.AppleGraphicsDeviceControl     3.6.22
    com.apple.driver.AppleHDAController        2.6.3f4
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOHDAFamily           2.6.3f4
    com.apple.driver.AppleThunderboltDPInAdapter            3.1.7
    com.apple.driver.AppleThunderboltDPOutAdapter         3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily    3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.4.5
    com.apple.driver.AppleUSBMultitouch       240.10
    com.apple.iokit.IOUSBHIDDriver     660.4.0
    com.apple.driver.AppleUSBMergeNub       650.4.0
    com.apple.driver.AppleUSBComposite        656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        3.6.7
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltNHI    2.0.1
    com.apple.iokit.IOThunderboltFamily         3.3.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily   3.6.7
    com.apple.iokit.IOUSBUserClient     660.4.2
    com.apple.iokit.IOEthernetAVBController  1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IO80211Family       640.36
    com.apple.iokit.IONetworkingFamily           3.2
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.iokit.IOUSBFamily            686.4.1
    com.apple.driver.AppleEFINVRAM  2.0
    com.apple.driver.AppleEFIRuntime            2.0
    com.apple.iokit.IOHIDFamily            2.0.0
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     7
    com.apple.driver.AppleKeyStore     2
    com.apple.driver.DiskImages           371.1
    com.apple.iokit.IOStorageFamily      1.9
    com.apple.iokit.IOReportFamily       23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform         2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.pthread          1
    com.apple.kec.corecrypto     1.0
    Model: MacBookPro8,2, BootROM MBP81.0047.B1E, 4 processors, Intel Core i7, 2.3 GHz, 16 GB, SMC 1.69f1
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1333 MHz, 0x85F7, 0x483634314755363746393333334700000000
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1333 MHz, 0x85F7, 0x483634314755363746393333334700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.7f3 14616, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Hub
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 22.1

  • MacBook Pro 15" video card problems (i think)

    Can anyone tell me if this is indeed a video card problem?
    MBP 15" info (Dec. 2011)
    Processor 2.4 GHz Intel Core i7
    Memory 4GB 1333 MHz DDR3
    Graphics Intel HD Graphics 3000 384 MB
    OS X Lion 10.7.5
    This is what happened:
    I use my mbp heavily because I edit a lot of videos with Premiere. I also use lightroom / photoshop alot + games. I also installed Parallels desktop late 2013. I don't know if that is relevant but anyway. Everything started late 2013 (a little after installing parallels actually) when there are moments when the audio wouldn't work and I couldn't adjust the volume. It would come back anyway so i didn't mind it. Then the fans were on high speed for little activity. After that the keyboard backlight couldn't be adjusted and wouldnt work. I ignored all of these cuz i wasn't troubling me at the time. In January i left for france to study - I use bike all the time and once stupidly placed my laptop on the basket going to school (rough roads). I had a class with html so I had to open Parallels, my teacher pointed out the fans and how loud they were. That day, parallels desktop said i must upgrade to windows 9 or it will restart every 2hours. I didn't of course. I didn't have time to.
    After that (a few days later i think) my laptop would randomly turn into a black screen but it's still on (the power LED is on) I tried turning it off by pressing down the power button and then turning it back on. It worked the first time. During the first week, the frequency of it happening grew. It would do it almost 3 times a day. during that same week I tried to do an SMC reset. It fixed the keyboard light, fans and audio but not the black screen thing. It just keeps on happening around 1-3 times a day. It only happens when I'm using it btw, never when I just leave it. ALSO, after a few days, it would take longer hours to open my mbp again. I mean, the screen would turn black. i would turn it off, then on again. I will ONLY hear the hard drive moving but no startup sound and no grey screen and apple logo. nothing.
    The following weeks after that, I asked a friend to help me out. He suggested that I install gfxCardStatus because he said it might be my video card. He instructed that I keep it on intergrated only. So I installed that and did what he said I thought it worked for a while because the black screens stopped happening (even when gfx keeps on going back to dynamic) BUT NOW, MY LAPTOP WOULD FREEZE (not turn black). I'd shut it down using the power button but it still takes me hours to open it again. Sometimes, I'd wait for the battery to drain because it would startup when i charge it (sometimes)
    I tried doing AHT as well to confirm the video card problem, but the results are no problems found. I really don't want to replace my logicboard here in france. everything is more expensive here. ;__;
    Today I uninstalled parallels to see if that might have had anything to do with my problem now but i think that's just wishful thinking.
    Can somebody tell me if this is really about the video card? Thank you

    Your appointment at the genius Bar in an Apple Store (anywhere in the world) for an evaluation is FREE, in warranty or out. Those guys put their hands on these Macs all day every day, and they are especially good at Physical and Power problems.
    Ask them.

  • Dual Boot Win 7 & win 10 Problems?

    I am dual booting this, (Win 10 on my 2TB HDD and Win 7 on my SSD.) and now when i try to boot back to Win 7 my mouse switches off. The thing works fine in 10, and had been workign for years on 7... Anyone else seen a problem like this? 
    I have tried reinstalling the mouse drivers and it isnt helping on Win 7. Unplugging and pluggung in, the mouse lights up for a split second, but then dies again. switch back to Win 10 and it works as usual. No problem at all...

    Hi RobGamez,
    Are you using USB mouse?
    If so, how about another USB port?
    If this is a USB mouse, I suggest you uninstall the USB controller in Windows 7 system and restart to check if you can get it work.
    1.Open Device Manager.
    2.Expand Universal Serial Bus controllers.
    3.Right-click every device under the Universal Serial Bus controllers node, and then click Uninstall to remove them one at a time.
    4.Restart the computer, and then reinstall the USB controllers.
    Alex Zhao
    TechNet Community Support

  • Query structure problem (i think)

    hi am trying to get selected strings out of a jlist
    and concanate them into a query i dont have any
    problems getting the strings out of the list and
    into the query ,i think that my problem lies within
    the structure of my query.i am trying to create a new
    user for a database and set their privleges when i run
    the program and create a new user every things fine as
    long as the only value that i select from the
    privilegs list is "ALL PRIVILEGES" or "CREATE" any ther values
    and i get a connection failure to the MySQL server. could any one tell
    me where i am going wrong or knows the structure of another query
    that can do the same job???
    cheers gerry
    final String privilegetype[] = {"SELECT","INSERT","UPDATE","DELETE","CREATE"
    ,"DROP","ALL PRIVILEGES"};
    String databasename[] = {"garage","music store",};
    //the query where mk=the selected string from privilegetype,
    mkk=the selected string from databasename,
    name=new username,new String(pass)=the new user password
    s.executeUpdate ("GRANT "+mk+" ON "+mkk+" TO "+name+" @"+host+"
    IDENTIFIED BY '"+new String(pass)+"' WITH GRANT OPTION");

    Output the actual query string and see if you can run it outside Java. If you cannot, then it's a database/SQL problem, not a Java problem. If you can, come back and post more details.

  • IQ524 Upgrade to win 7 problems

    Still unresolved problems with win7 upgrade and after 5 weeks of attempting to get through on the help line showing on the instructions still no results.  Now when you call the help line it says it is a private number.  What is that all about.  This stinks.  This win 7 upgrade program is a bust.  Also note that alot of vendors still do not support win 7 with updated drivers for devices including the newer HP office network printers.  Beware of the upgrade windows beast.
    I guess my last post was dropped for the message board for some reason.
    Message Edited by jimbjr on 11-21-2009 02:44 PM

    Hot off the press.  The 1-888-447-0150 is supposeldy not a good number that was printer on the win 7 upgrade package instruction sheet.  I used another number from off the HP.com web site.  They could not offer a solution either and will get back with me when they may have an answer to the problem by e-mail.  Okay. 

Maybe you are looking for

  • Managing a remote unix box with OSX server apps...

    Aside from running an OSX server, I am in charge of maintaining an external, SUN unix server from my Mac, and I hate using line commands, esp. with how jaded I've become using the nice tools for managing the Mac server. For now I use terminal in orde

  • Mid 2014 rMBP with ui lag

    Problem description: my macbook is experiencing ui lag, slow animation when switching between space and in mission control. I just got this brand new laptop two months ago, really disappointed. can some please help me ? EtreCheck version: 2.0.11 (98)

  • Not able to post a GR in MIGO transaction

    Dear Friends, I am not able to post a good receipt in MIGO for a PO with Item having split valuation, I get message in MIGO as "document does not contain any selectable items. Please help. Regards, Milesh.

  • What does this error mean? Error: Access violation at address 0053DD46

    I am trying to run diff reports using batch scripts, and its very puzzling that some of the diff report scripts within the batch script are running and some are not, there is no consistency to what is getting errored out. I then tried running them ma

  • Perfomance issue with BSIS Table

    Hi all, I am encountering a performance issue when seelcting from BSIS table. The requirement is I have Internal Orders extracted from a Master table, based on these internal orders and company code I need to go to BSIS table and do an extraction for