Tymac94 Posted February 21, 2009 Share Posted February 21, 2009 Does anybody know of a good automatic Driver Updater. I already tried Drvier Max, did not work. Thanks Tyler Quote Link to comment Share on other sites More sharing options...
digip Posted February 21, 2009 Share Posted February 21, 2009 Does anybody know of a good automatic Driver Updater. I already tried Drvier Max, did not work. Thanks Tyler If it aint broke, don't fix it. ;) Unless you have a bug in something, crashes, etc, you only need to update when there is a fix or enhancment to a device. Otherwise, always go to the manufacturer for udaptes or even windows update will fix them sometimes, like my GPU drivers always do when there is a newer one. Quote Link to comment Share on other sites More sharing options...
h3%5kr3w Posted February 22, 2009 Share Posted February 22, 2009 If it aint broke, don't fix it. ;) Cannot argue with that. Sometimes upgrading your drivers (especially if it's for something relatively old) may slow down or degrade stability. Quote Link to comment Share on other sites More sharing options...
DingleBerries Posted February 22, 2009 Share Posted February 22, 2009 It would be a lot easier to write a script to check for updates. cURL or wget along with md5check. Have it download the latest version, compare it to the old version. If they are different then install... This is pretty dangerous, you should always make sure you are installing important system software your self. Modified version(url change) Author: netytan #!/usr/bin/env python import urllib, md5 page = urllib.urlopen('http://www.nvidia.com/object/linux_display_ia32_180.29.html').read() checksum = md5.new(page).digest() if open('md5.txt', 'r').read().strip() != checksum: Â Â Â Â print 'Page has been changed\n' Â Â Â Â open('md5.txt', 'w').write(checksum) else: Â Â Â Â print 'Page has not been changed\n' Quote Link to comment Share on other sites More sharing options...
VaKo Posted February 22, 2009 Share Posted February 22, 2009 Windows 7 seems to manage drives through windows updates. Quote Link to comment Share on other sites More sharing options...
stingwray Posted February 22, 2009 Share Posted February 22, 2009 Windows 7 seems to manage drives through windows updates. Does that actually work? Whenever I've played with that in XP and Vista it's just been completely useless. Quote Link to comment Share on other sites More sharing options...
VaKo Posted February 22, 2009 Share Posted February 22, 2009 Its seems to, long way to go before its like linux but its getting there. I installed it on a Dell workstation and it found most things automatically and got the rest from WU. Quote Link to comment Share on other sites More sharing options...
SomethingToChatWith Posted February 22, 2009 Share Posted February 22, 2009 Yeah, you should start seeing a lot more drivers updated through WU with W7. Heck, you can even update some programs now through WU... or at least update them through the typical update dialog users are used to. Makes it a lot simpler than having a user memorize for each program where to go to get updates. Quote Link to comment Share on other sites More sharing options...
Webhostbudd Posted February 23, 2009 Share Posted February 23, 2009 Would make it even more simple to make it: sudo aptitude update sudo aptitude upgrade Quote Link to comment Share on other sites More sharing options...
sem1845 Posted February 23, 2009 Share Posted February 23, 2009 there is a program called sumo by kc software that you might like Quote Link to comment Share on other sites More sharing options...
Razor512 Posted February 23, 2009 Share Posted February 23, 2009 you could use http://driveragent.com/ to check for which ones are outdated then use google to find them (the scan is free but they charge to download from them so just use them to find which ones are outdated then do the google work your self to find the downloads but keep in mind that most drivers don't need to be updated the main ones to keep up to date are videocard drivers as games constantly change for for the rest, they rarely need updates Quote Link to comment Share on other sites More sharing options...
Msaminano10 Posted July 29, 2010 Share Posted July 29, 2010 Does anybody know of a good automatic Driver Updater. I already tried Drvier Max, did not work. Thanks Tyler try to download the best Driver Update. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.