The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Changing from Intergrated to main

    Discussion in 'Alienware' started by Napbree, Sep 29, 2008.

  1. Napbree

    Napbree Notebook Evangelist

    Reputations:
    23
    Messages:
    599
    Likes Received:
    0
    Trophy Points:
    30
    Hey
    Is theior anyway to change from the intergrated chip to main when it's turning on, and hasn't booted vista up yet?
    Couldn't find anything in the bios.

    Thanks
     
  2. t2ppp124

    t2ppp124 Notebook Consultant

    Reputations:
    7
    Messages:
    184
    Likes Received:
    0
    Trophy Points:
    30
    Nope, you have to make sure you do the key combo (FN+ F7?) and then restart otherwise itll stay on whatever it was last on.

    Tom
     
  3. Napbree

    Napbree Notebook Evangelist

    Reputations:
    23
    Messages:
    599
    Likes Received:
    0
    Trophy Points:
    30
    Just as a reference there is :)

    Hold down the 2 mouse buttons and it will swap to intergrated ;)
     
  4. t2ppp124

    t2ppp124 Notebook Consultant

    Reputations:
    7
    Messages:
    184
    Likes Received:
    0
    Trophy Points:
    30
    What, before making it into windows?
     
  5. Napbree

    Napbree Notebook Evangelist

    Reputations:
    23
    Messages:
    599
    Likes Received:
    0
    Trophy Points:
    30
    Yep. Instead of turning the laptop on using the alienhead. YOu hold down the mouse buttons - this will turn it on and boot it using the intergrated :)
     
  6. t2ppp124

    t2ppp124 Notebook Consultant

    Reputations:
    7
    Messages:
    184
    Likes Received:
    0
    Trophy Points:
    30
    Oh, it'd be nice if they had the courtesy to let us know that eh... But nevertheless good job for pointing it out for us ;)

    Tom
     
  7. findvikas

    findvikas Notebook Deity

    Reputations:
    272
    Messages:
    1,184
    Likes Received:
    1
    Trophy Points:
    56
    nice find mate.... +rep for you
     
  8. Napbree

    Napbree Notebook Evangelist

    Reputations:
    23
    Messages:
    599
    Likes Received:
    0
    Trophy Points:
    30
    Now I need your help :p

    I can't switch from intergrated. I've tried multiple methods such as the fn+f7 and the mouse button. It stuck :(

    Help :p
     
  9. findvikas

    findvikas Notebook Deity

    Reputations:
    272
    Messages:
    1,184
    Likes Received:
    1
    Trophy Points:
    56
    this is not good... you should have told me in advance that it will not switch back to External... I am stuck too :(... let me chk it out real quick :)
     
  10. Napbree

    Napbree Notebook Evangelist

    Reputations:
    23
    Messages:
    599
    Likes Received:
    0
    Trophy Points:
    30
    It doesn't stick it - I've been doing it for a while on this laptop. And I've always been able to switch back. But now not :(
     
  11. findvikas

    findvikas Notebook Deity

    Reputations:
    272
    Messages:
    1,184
    Likes Received:
    1
    Trophy Points:
    56
    I love it when I do... when I do... :)
    Attached is the script which I was planning to write for quite a while but never got time to do it.

    Rename it to .VBS and it will ask you if you want to switch to another card. let me know how it goes
     
  12. findvikas

    findvikas Notebook Deity

    Reputations:
    272
    Messages:
    1,184
    Likes Received:
    1
    Trophy Points:
    56
    some changes to the site... attachments are being moderated? and we cannot use ************ any more ?

    anyways.. here is the script that I tried to attach in my previous post. save this in a .VBS file and run it

    Code:
    If IsInternal Then
    	If Msgbox("Running on Internal, want to switch to External", 4,"BinaryGFX") = 6 Then
    		SwapMode()
    		Msgbox "Settings saved, you need to reboot to use External card",,"BinaryGFX"
    	End If
    Else
    	If Msgbox("Running on External, want to switch to Internal", 4,"BinaryGFX") = 6 Then
    		SwapMode()
    		Msgbox "Settings saved, you need to reboot to use Internal card",,"BinaryGFX"
    	End If
    End If
    
    Function IsInternal()
    For Each objItem In GetObject("winmgmts:\\.\root\WMI").ExecQuery("SELECT * FROM WMI_GetVGAMode",,48) 
    	If Not isNull(objItem) Then
    		If objItem.VGAInfo(0) = 0 Then
    			IsInternal = True
    		End If
    	End If
    Next
    End Function
    
    Sub SwapMode()
    Set objWMIService = GetObject("winmgmts:\\.\root\WMI") 
    Set colItems = objWMIService.ExecQuery("SELECT * FROM WMI_SetVGAMode",,48) 
    For Each objItem in colItems 
    	'do nothing, just loop through it
    Next
    End Sub
    
     
  13. Napbree

    Napbree Notebook Evangelist

    Reputations:
    23
    Messages:
    599
    Likes Received:
    0
    Trophy Points:
    30
    Nice!! Thanks <3
     
  14. t2ppp124

    t2ppp124 Notebook Consultant

    Reputations:
    7
    Messages:
    184
    Likes Received:
    0
    Trophy Points:
    30
    lol, not quite as successful as it seems then?
     
  15. Napbree

    Napbree Notebook Evangelist

    Reputations:
    23
    Messages:
    599
    Likes Received:
    0
    Trophy Points:
    30
    Erm I dunno, it never ****ed up before. Just untill I tried it today on XP - it could be the binarygfx drivers on xp that are screwed :p
     
  16. findvikas

    findvikas Notebook Deity

    Reputations:
    272
    Messages:
    1,184
    Likes Received:
    1
    Trophy Points:
    56
    omg... the script does work but then the system is not keeping the settings after reboot... let me try something else
     
  17. t2ppp124

    t2ppp124 Notebook Consultant

    Reputations:
    7
    Messages:
    184
    Likes Received:
    0
    Trophy Points:
    30
    Oh noes! lucky i didnt try it then :) But if it does work on mine (only after there is a fix) itll be good to try.
     
  18. dwend

    dwend Notebook Evangelist

    Reputations:
    84
    Messages:
    313
    Likes Received:
    0
    Trophy Points:
    30
    Mine got stuck on integrated, I unplugged the power cable and the battery and held the Alienhead for 15 sec. Then started via Aleinhead and it went to external.
     
  19. Napbree

    Napbree Notebook Evangelist

    Reputations:
    23
    Messages:
    599
    Likes Received:
    0
    Trophy Points:
    30
    Yes it is. It just put my system out of intergrated into the high performance :)
     
  20. findvikas

    findvikas Notebook Deity

    Reputations:
    272
    Messages:
    1,184
    Likes Received:
    1
    Trophy Points:
    56
    so hard boot works again... let me try again and then will try the script as well
     
  21. findvikas

    findvikas Notebook Deity

    Reputations:
    272
    Messages:
    1,184
    Likes Received:
    1
    Trophy Points:
    56
    anybody noticed.. then after you press the MOUSE BUTTONS the next time it boot Windows Media Center starts automatically. even while vista is running and u press those buttons Media Center starts... strange!
     
  22. Napbree

    Napbree Notebook Evangelist

    Reputations:
    23
    Messages:
    599
    Likes Received:
    0
    Trophy Points:
    30
    Erm, if you mean holding the mouse buttons down in vista will start up the media centre then yes thats right - normal apparently. But if you mean from a boot, then that's not :p
     
  23. findvikas

    findvikas Notebook Deity

    Reputations:
    272
    Messages:
    1,184
    Likes Received:
    1
    Trophy Points:
    56
    ok that worked.... pheeww...!!! :)
     
  24. DeadLy

    DeadLy Notebook Consultant

    Reputations:
    3
    Messages:
    154
    Likes Received:
    0
    Trophy Points:
    30
    actually you just need to hold done the right mouse button to turn on the system to get into intergrated mode.