Jump to content
6 posts in this topic

Recommended Posts

Hi guys, 

 

This is my first post, although I have read several months. I need to disable my nvidia since the battery is consumed quickly. After following several methods I can´t find where to turn it off.

 

I share my DSDT SSDT original tables and IOReg . Anyone help me? Thank´s!

MAC.zip

Link to comment
https://www.insanelymac.com/forum/topic/301246-disable-gt750m-on-toshiba-p50/
Share on other sites

Thanks for your reply, 

 

RehabMan helped me, I've solved the problem calling _OFF from _INI in DSDT.

 

//Before:

 

Method (_INI, 0, NotSerialized) // _INI: Initialize
{
}

 

//After:

 

Method (_INI, 0, NotSerialized) // _INI: Initialize
{
_OFF()
}

  • Like 1
×
×
  • Create New...