Mat Posted August 12, 2015 Share Posted August 12, 2015 Windows 10 is pretty nice, most of the features I'd already see on the beta/pre-release program but it's nice to see it all working properly.I've got an issue with my graphics though (intel 4000 HD in a dell vostro). Using the latest intel (10.18.10.4252) and dell drivers(10.18.10.4242) I can't adjust the screen brightness. Using the microsoft basic display driver I get the controls to adjust it, but they don't actually change anything. A lot of people online said the older drivers (10.18.10.3262) worked, so I tried that as well, but no luck there either. I'm about to try 10.18.10.3277 as well, which I think is just an update to the win8.1 drivers I had tried before.Anyway. Really strange that nothing works at all. I was expecting the MS basic display driver to at least work and be slow.If anyone has any other suggestions I'll be happy to hear them. Right now my solution is wearing sunglasses.Matt AutoIt Project Listing Link to comment Share on other sites More sharing options...
kaotkbliss Posted August 12, 2015 Share Posted August 12, 2015 I hope they get things straightened out soon. I've been having some issues as well that I'm waiting quite impatiently for a fix for. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
JohnOne Posted August 12, 2015 Share Posted August 12, 2015 Are you using update to install/change drivers, or the manufacturers setup utility? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
jvanegmond Posted August 13, 2015 Share Posted August 13, 2015 I've had this problem in the past and ended up building this https://github.com/jvanegmond/mlux/blob/v0.2/Mlux.Lib/Display/Monitor.cs#L35 github.com/jvanegmond Link to comment Share on other sites More sharing options...
Mat Posted August 13, 2015 Author Share Posted August 13, 2015 I'm using manufacturers setup (dell and Intel). Dell claims that the drivers are tested on Windows 10.Ta Manadar, will take a look when I get out of bed. AutoIt Project Listing Link to comment Share on other sites More sharing options...
Chimaera Posted August 13, 2015 Share Posted August 13, 2015 I've had this problem in the past and ended up building this https://github.com/jvanegmond/mlux/blob/v0.2/Mlux.Lib/Display/Monitor.cs#L35do you have a compiled version of that?I have a machine at work that is always dim and ive tried everything i can think off to sort it. Would that be able to do that?ps ive no idea what type of code it is If Ive just helped you ... miracles do happen. Chimaera CopyRobo() * Hidden Admin Account Enabler * Software Location From Registry * Find Display Resolution * _ChangeServices() Link to comment Share on other sites More sharing options...
Mat Posted August 13, 2015 Author Share Posted August 13, 2015 Hi Manadar, I'm getting a "Not Supported" exception, so exactly the same as other methods of setting. Chimaera, attached is my test exe, which is just a console that prints the brightness and allows you to set it. Code is Manadar's class, plus:using System; using Mlux.Lib.Display; namespace ScreenBrightness { class Program { static void Main(string[] args) { Monitor m = new Monitor(); string s; byte n; while (true) { Console.WriteLine("Brightness: {0}", m.GetBrightness()); Console.Write("New Value: "); s = Console.ReadLine(); try { n = byte.Parse(s); m.SetBrightness(n); } catch (Exception e) { Console.WriteLine(e.Message); } } } } } ScreenBrightness.exe AutoIt Project Listing Link to comment Share on other sites More sharing options...
JohnOne Posted August 13, 2015 Share Posted August 13, 2015 If you have not already (which I suspect you have) try updating the driver through task manager and letting windows decide best driver. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Mat Posted August 13, 2015 Author Share Posted August 13, 2015 MS automatically goes for the latest driver from intel (10.18.10.4252). AutoIt Project Listing Link to comment Share on other sites More sharing options...
jvanegmond Posted August 13, 2015 Share Posted August 13, 2015 Shame Mat.I read somewhere that Windows 10 has issues (or just changed behavior from Win7/8) selecting the right driver. What I read the user had success removing the drivers including the fallback options and reinstalling only the new they want it to use. github.com/jvanegmond Link to comment Share on other sites More sharing options...
Mat Posted August 13, 2015 Author Share Posted August 13, 2015 I considered that, but it sounds a bit risky so I haven't tried it yet. I went as far as uninstalling all the drivers (incl. the dedicated graphics) so I was left with just the MS basic driver, but the problem was I couldn't test like that because it would always re-install the AMD drivers (or a version of them anyway) and switch to that. AutoIt Project Listing Link to comment Share on other sites More sharing options...
BinaryBrother Posted August 18, 2015 Share Posted August 18, 2015 (edited) OS: Windows 10 ProBuild: 10240Arch: X64Laptop: Lenovo T430Graphics: Intel HD 4000Driver Version: 10.18.10.4252Brightness works perfect on my rig. I only mentioned that, because we're running the same graphics and OS. I wonder if it's a Function-key driver? Have you tried adjusting the brightness via this method?http://screencast.com/t/RNAS184w0j I'm not sure this would help, but I could use one of those driver backup programs and send you my driver. If you think that'd be worth anything. Two last thoughts....1.) I've seen a damaged inverter cause the brightness to be stuck at a specific level.2.) My Laptop brightness controls work in BIOS options, which is completely oblivious to a Windows driver. - Just food for thought. Edited August 20, 2015 by BinaryBrother added last half of post and changed "backlight" to "inverter". jvanegmond 1 SIGNATURE_0X800007D NOT FOUND Link to comment Share on other sites More sharing options...
Mat Posted August 20, 2015 Author Share Posted August 20, 2015 Thanks BinaryBrother,I've tried switching via all the windows methods (that I'm aware of), as well as WMI using Manadar's code above. I can't imagine there'd be any difference in the actual intel driver of the same version between different manufacturers, but thanks for the offer.I've given up looking into this, as it's probably going to sort itself out soon enough so it's not worth me putting time into when I don't really use my laptop late at night at the moment.Last thoughts are interesting. It's too much of a coincidence that it stopped working exactly after the win10 upgrade for me to think it's a hardware issue, but it's not impossible. I'll see what happens in my bios screens too. Not something I've ever tried before. BinaryBrother 1 AutoIt Project Listing Link to comment Share on other sites More sharing options...
Chimaera Posted August 21, 2015 Share Posted August 21, 2015 @Mat i tried that code but the machine in question is already at 100 so for me its a hardware problem, ill have to strip it down later when i get timeThanks for sharing If Ive just helped you ... miracles do happen. Chimaera CopyRobo() * Hidden Admin Account Enabler * Software Location From Registry * Find Display Resolution * _ChangeServices() Link to comment Share on other sites More sharing options...
BinaryBrother Posted August 22, 2015 Share Posted August 22, 2015 .... I'll see what happens in my bios screens too. Not something I've ever tried before.You figure things like this out trying to see if your custom flash gave you any new BIOS options, but it's 4AM and the ole' lady doesn't appreciate that neon-blue screen lighting up the entire room! *Let me see if my brightness controls work in BIOS! Check - Nobody has to die today. lol SIGNATURE_0X800007D NOT FOUND Link to comment Share on other sites More sharing options...
Mugs Posted April 29, 2016 Share Posted April 29, 2016 @Mat Any chance you found a solution to this? I've tried just about everything I could find on every forum, and I have the same issues. I even tried the crazy (?) step mentioned here <http://answers.microsoft.com/en-us/windows/forum/windows_10-hardware/cannot-adjust-brightness-in-win-10-samsung-laptop/3409782e-f867-4b2a-ab7e-d8e2405e702e> and edited my registry - although it worked for others, it did not work for me. I'm on a Samsung Series 9 notebook, so presumably this is a driver issue between Intel and Windows alone. I work a lot at night, so sunglasses might need to be my temporary fix here too! Link to comment Share on other sites More sharing options...
Mat Posted April 30, 2016 Author Share Posted April 30, 2016 Mine eventually fixed itself with a windows/driver update, though I never noticed which one, as it had probably been fixed for a while when I finally noticed it could change again. AutoIt Project Listing Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now