G585 wired and wifi networking problems - please help!!

Just purchased a new G585 a couple weeks ago.  After trying Win 8, I realized what a complete POS of an OS it is and installed Win 7.
2 Major problems:
1.  Ethernet connection erratically disconnects - no rhyme or reason - sometimes works other times doesn't.  I've tested on two diff networks - the same behavior.
2.  Cannot install wifi - tried the drivers from Lenovo site - no go - tried drivers someone had recommended (broadcom wifi5.100.196.18) these did not work either - device still unrecognized in device manager
This is my 9th Lenovo laptop over the years.  The others were great.  This one seems to have serious issues.
Can anyone assist please???

I have had these same connectivity issue since I bought the laptop in March of 2013.  It is January 2014, and is will still drop connectivity for no apparent reason, be incredibly slow when it IS connected, and sometimes just sop seeing the network altogether (and this happens on every netwrok I have attempted to connect to).
The most obnoxious thing is that after spending several hours over multiple days on the phone with tech supprt, they said I needed to send it in for repair.  So I did.  It was gone two weeks and when I got ti back, they claimed that had repaired it, but everything was exactly the same.
Combine that with the lack of help for the company and the fact that this seems to be the only laptop where edge swipes on the touchpad cannot be disabled, this Lenovo laptop is the worst computer I have ever owned, period.  And I mean ever.
If there ACTUALLY IS a way to fix this issue, I would love to hear it, bit nothing that anywone ever suggest actually works.  I thought maybe if I upgraded to Windows 8.1 it would help, but the Lenovo site lists the G585 as a model you shouldn't update because of monitor driver issues witht he upgrade.  It really looks to me like Lenovo has written this model off completely.
I will never buy another Lenovo product and I will direct other people to other brands.  Words cannot describe my frustration and disappointment.

Similar Messages

  • IPhone wifi-network problem- Please Help!

    I have a problem with my iPhone4. It could only connect to the internet for a couple of minute then it dropped off. But it is still connect to the wifi though and in my Mac the wifi seem to be working fine. Any ideas?

    first start here
    http://www.apple.com/support/iphone/wifi/
    If that doesn't help then
    Restore as new, if wifi  works add your backup and proceed .If after backup issue returns
    Then you have a corrupt backup
    If when restored as new no wifi then you probably have hardware issue and should take it to an Apple Store genius bar

  • WIFI NETWORK PROBLEMS! HELP!!! PLEASE! :(

    I was on the internet and it just disconnected for no reason. I went to settings then Wifi and touched my network it then said "unable to connect to network hedgecoth" <---- (the name of my network) I then went to genral setting and reset the network settings went to wifi typed in my network and network password. Still unable to connect. I kept trying to get it to work for 2 days and nothing happened but it let me connect to my neighbors guest account that didnt have a password on it, but not my own. weird right? i finnaly gave up and just restored my intire ipod litteraly praying that it would work! IT DIDNT!!!!!!!!!!!!! SO NOW I HAVE NO PICTURES NO APP NO SONGS AND NO INTERNET! and since i dont have internet i cant reinstall all my apps and go to itunes D:<
    I AM OUT OF IDEAS ON WHAT TO DO!! PLEASE PLEASE PLEASE PLEASE PLEASE PLEASE!!!!!!! HELP ME!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    I PAID 200$$$ FOR SOMETHING THAT JUST QUITE WORKING :,( I am litterly almost crying! PLEASE HELP!!!!!!!!!!!!!!!!!!!!!!!!

    Try restarting your router by removing power for 30 seconds. Next, reset network settings on your iPad (Settings > General > Reset > Reset network settings) and then attempt to connect.
    Do you have any other devices working on your network?
    Do you have a backup from previously synching with iTunes? If so you can restore you music and Apps from it.
    Apps can also be loaded into iTunes on your PC and synched to your iPod.

  • Windows Vista and WiFi networking problem with MackBook Air

    Hi, everyone!
    Thanks in advance for the following help.
    For some specific programms I need Windows Vista to be set up on my MacBook Air.
    The problem with Broadcom WiFi adapter.
    While moving large files over home network it hangs and looses the wifi network. It works OK while surfing the internet or doing other low traffic job. But when it comes to 2 MB/sec transfer it doesn't work. I tried two different routers, no positive result. PC works propely on any file sizes. After booting the Leopard the problem goes away. So it is onle Windows Vista problem.
    May be drivers? I tried 4.170.25.19 Windows Vista drivers from Broadcom - it didn't help. But I am not goog in driver settings in Control Panel, so may be the solution is there.
    Any ideas how to solve it?
    Thanks for help in advance.
    Andrey.

    Hello Nescom. Welcome to the Apple Discussions!
    I'm afraid I really don't have an answer for you but I can offer my experiences with large files transfer with Vista. My current home network is a combination of Windows PC, Windows Servers, and Macs. Large file transfers between most of them have relatively the same performance, except when transferring large files from the Vista PC to any other OS. It is demonstrably slower. Interestingly, transfers between Vista machines does not appear to be a problem. I understand that this is a known problem by Microsoft and was supposed to be fixed with Vista SP1.
    So the problem might not be your network, but Vista itself. I'm curious if you have this problem when transferring large files to another Vista device?

  • Problem: codebase, jar and image reloading problem please help!

    Hi Java Gurus,
    I have written an applet that extends JApplet for viewing webcam. In order to reduce the download time I put my classes into a doorcam.jar file. The following is my <applet> tag in my html file.
    <applet code="CameraApplet.class"
    archive="doorcam.jar"
         codebase = "webcam/classes"
         width="375" height="475">
    <param name="imagePath" value="http://judge/webcam/images">
    <param name="webCamImage" value="door.jpg">
    <param name="COMPort" value="COM2">
    <param name="frameRate" value="10"> <!-- could not exceed more than 10-->
    <param name="host" value="judge">
    </applet>
    The fist problem is that my class file does not get loaded from the jar file if i provide the "codebase" attribute as above. Instead the browser load every single class file from the webserver. This has some problem too. Coz the browser sometimes just thorough NullPointerException or ClassNotFoundException. After much of debugging I found out that the problem is the IE browser which seldom fails to load classes or image file from the server. If i referesh the browser the applet and all its classes loaded successfully and runs smoothly. This behaviour never occurs when running with "appletviewer".
    I wanted all my classes to be loaded from my jar file. After much of trial and error I found out that if i remove "codebase" attribute the browser loads the classes from my jar file and applet loads very fast. This is where the second problem comes in. The browser does not reload my webcam image file so that the webcam become alive with live images, like before.
    If I run on "appletviewer" everything works fine my web cam is displayed properly. But in IE browser the image does not get reloaded when I refresh my image to give live to my webcam display. The refresh method is given below.
    private void refresh(final URL url) {
    Image webCamImage =getImage(url);
    webCamImage.flush(); // flush out the previous image
    webCamImage = getImage(url); // get a new image
    webCamImageIcon.setImage(webCamImage); webCamImageIcon.paintIcon(webCamLabel, webCamLabel.getGraphics(), 15, 15);
    When I add the "codebase" attribute back, the image gets reloaded for every refresh() and everything works fine. But the classes are also loaded from the server. And occasionally also suffers Class loading and image loading problem. As I presented earlier, when I do refreshing in the browser everything gets loaded and the applet function correctly with web cam displaying very well.
    The problem is so strange that I could not find any way to solve it.
    It would be a great help to me if somebody provide me some work around to the problem.
    I tested on Windows 2000, Windows XP, IE 5.5, IE 6 with J2SDK 1.4.0.
    Thank you all very much in advance.
    best regards,
    Judge

    Thank you so much for the suggestions. I did tried the way u suggested. The problem still the same.
    I think its the problem between IE browser and Java Plug-in.
    I which SUN would find these incompatibilities and solve these problems.
    I even tried using java SDK and plug-in 1.4.1 it even worst. It can't even load an applet. And it does not show any loading messages nor any error messages. It just show a cross sign on the upper left coner.
    I would be so glad, if Sun would try to eliminate the inconsistancies such as caching, loading, initializing etc between browser and its Java plug-In. For example, applets behave well in appletviewer and behave unpredictably in browser environment.
    I have seen so many people in the forums with all sorts of problems because of this.
    Right now I m desperately looking for work around to my problem.
    If somebody would provide me with the solution to my problem it would be a great help to me.
    thank you all so much.
    best regards,
    Judge

  • Wired and wireless network problem

    I have an Airport Extreme setup with an 20" imac connected thru ethernet. I also have a 17" Macbook Pro connected wireless. Both have no problems connecting to the internet but I want to be able to talk to each other. I checked and the wired network has a different subnet then the wireless one. I would like to have them both on the same subnet but I can't seem to find a setting in my airport extreme that will allow me to change that.. The wired network seems to be the same subnet as the assigned address from my ISP. I only have 1 address from my ISP so the airport is not acting like a switch it is routing the data just creating a internal network based on the ip from the ISP. The wireless is handing out ip address that I have setup in the DHCP section.
    Message was edited by: Chadwick-P

    Hmmmm
    It sounds like you have your AirPort Extreme configured to be in bridge mode? Is this the case?
    If it is the case, then you can configure it to "share a single IP address" and then both the wired 20" iMac and the MBP would get DHCP addresses on the same subnet....
    If your Airport Extreme is already setup to share a single IP address then the two stations really ought to have IP addresses from the same subnet. Perhaps one of more of them has a static IP and is not setup to use DHCP?

  • Ipod Nano 3G and Bose Sounddock Problems - Please help if you can?

    Hi all,
    Hope you can help me out, I have just purchased a Nano 3G and its all fine when working with head phones.
    Tried it in my Bose Sounddock and it has several issues:
    1) will not charge at all
    2) will not let me change songs when docked
    3) when removed it locks for up to 20 secs
    4) bose remote will only let me alter volume not songs or rewind
    5) if I press off on Bose remote it goes off for 5 secs then comes back on
    Please can anyone help explain or offer solutions to this please.
    many thanks
    Chris mills

    Hi megan,
    I am swapping my Ipod this weekend. it's a fault with them and I don't think anyone has the answer to solve it.
    hope you can do the same.
    cheers
    chris

  • Firewire and audio interface problem, please help

    Hi all
    I'm not being lazy, i've spent hours trawling through forums and google trying to find a fix but cant so hope someone here can help.
    Basically, I've been using my Macbook for Logic Studio with an audio interface (Motu 8pre). This was connected via firewire 400 to firewire 400 and worked absolutely fine no problems.
    I've recently got a Mac Pro. I've installed Logic onto it, my Motu 8pre driver etc etc and noticed that the firewire socket on the Mac Pro is different. I've been on the Motu website and quite clearly they say that a firewire 400 to firewire 800 cable will work fine with modern macs (this can be seen in more detail at bottom right of this web page http://www.motu.com/products/motuaudio/8pre
    I've bought one of these cables and plugged them into my interface and Mac Pro respectively, switched on the device as i have been doing for the past year with my Macbook, but the MacPro just wont seem to recognise it.
    How can I get this interface to work with my Mac Pro?
    I've tried connecting to different ports on back and front, restarting machine but it just wont work.
    Am I missing something simple here?
    Can anyone help?
    Thanks in advance
    Adam

    Ok its official I AM a muppet.
    Went onto motu site again and noticed they released an update driver for snow leopard. Downloaded it and it works fine.
    Fixed.
    Thanks

  • Networking Problem - Please Help!!

    I have a remote office with a vpn router (netgear fvs114) connected to the main office that has a vpn router (netgear fvs318). So they have setup a vpn to vpn connection. I'm not that savvy into networking. I have a nas device with shares that contain elements such as photos, graphics & fonts along with quark documents and in-design documents located at the main office. It is being used as a file server. All applications are on the mac. There are various shares (files) on the nas which are accessed using the afp protocol. The shares mount without any problems. But, whenever I open anything that is on the nas, I end up waiting for 5 minutes or longer before it appears. The ball just spins and spins and spins and just when you think you're going to shoot into outer space, the file opens and appears on the mac. So it's extremely slow!!!!
    Is this a problem with the mac, nas or vpn routers? Has anyone else experienced this problem and if so how did they manage to fix it. I sure would appreciate any input.
    Thanks in advance!!

    Very good explanation of your problem, but you don't say much about what kind of Interface or Connection, (speed).
    One problem on the Mac as I see it, is that if your viewing Graphic Files... it downloads the whole file to make an Icon, then downloads it again to get the file!
    Also, Netgear doesn't seem as Mac friendly as others from my reading... don't have any myself.

  • HT1976 i have no data, its not a network problem please help

    My iphone keeps telling me I am not subscribed to a mobile network despite showing 3g and great reception. Network has been checked.

    Contact your carrier about this.

  • Clone Stamp and Healing brush problem, please help!

    Hi there, I'm new to the forum but I have been using Adobe creative suite for quite some time now.  As the thread title describes, I'm having an issue with my photoshop clone stamp and healing brush tool that I can't seem to fix on my own. I searched the internet all day, scrolling over many other posts but I can't seem to find anyone else who is having similar issues like I am having here.
    This is kinda hard to explain but the issue I am having, is that when I go to use either my clone stamp or healing brush tool, the layer I am working on whether it is a flattened background or normal editable layer, get shifted as soon as I press the option key to make a selection and then when I go to move to the area to use these tools it acts like I've duplicated the entire layer and drags it around the screen, even though no such copy and paste has been made.  All of my other tools are working normally and I wasn't having this issue last time I worked on anything in photoshop.
    I am running:
    a Mac OSX 10.5.8
    CS4 extended version 11.0.2
    Any and all help is greatly appreciated.

    Your probably seeing the clone source overlay.
    Go to Window>Clone Source and either uncheck:
    Show Overlay for no overlay or check clipped to show the overlay
    clipped to the size of the brush.
    There is also a photoshop  macintosh forum for future reference
    (you posted in the photoshop elements forum)
    http://forums.adobe.com/community/photoshop/photoshop_macintosh
    MTSTUNER

  • Problem with Spotlight and some system problem, Please HELP!

    I'm using iMac G5 with iSight (10.4.8)
    Recently, I've noticed that my spotlight didn't search anything, when I type something it just do nothing.
    I try to re indexing the spotlight by move the HD to the privacy zone in the spotlight preference but nothing appear on the list. I can't add anything to the privacy zone both by draging the folder or click + button.
    Then I search for the application that can clear the cache and re indexing the spotlight, I found Onyx and Maintenance.
    Both of them can't be open, it say that I have to use an admin account.
    Even I was logged in as a Admin, I have only one account in the system and set as an admin already.
    So, I search on the internet and someone suggest another way to re index in terminal by using this command: sudo mdutil -E /
    First I open the terminal and type the command, it said "-bash: sudo: command not found "
    So, I try to use terminal by boot on the DVD that bundle with iMac, and same result.
    I tried boot in single user by press command and S when boot and type sudo command, same reult.
    Another information, I noticed on my macbook when I open the terminal, it will show this info:
    Last login: show the time
    Welcom to Darwin!
    My computer name
    But on my iMac, it didn't show anything except only the computer name line.
    What should I do? Thanks

    Highly recommend that you read, reread and understand the consequences and then follow the directions as presented on X Lab
    http://www.thexlab.com/faqs/stopspotlightindex.html
    That is before you follow some of the directions you find on some of these discussions. Even mine.

  • WDS wired and wifi with mixed airports

    Hi,
    I've been having a heck of a time with 'fixing' a mixed wired and wifi network. 2 days so far and it's still not how I want it.
    It was working okay, then I started getting errors with IP's being duplicated, so I started over.
    Here's what I have :
    Orange France Livebox (dsl router)
    ABS-g (dual ethernet)
    ABS-n (pre-mixed g/n environment)
    2 AExpress-g
    Netgear Switch
    Original setup :
    livebox to netgear switch, feeding wired ABS-g (dual ethernet) and wired ABS-n (pre-mixed g/n environment). ABS-g acting as Main for WDS and feeding ABS-n via the switch, plus 2 AExpress-g via wifi.
    It all worked for about 2 months. Then the problem with duplicate IP addresses.
    So now the setup I have is :
    Livebox wired to ABS-n, which then feeds to Netgear Switch to LAN wired, plus, 2 AExpress-g on WDS via wifi.
    This works.
    Here's the problem :
    I want to extend the wifi network via wired, because there is some distance between the base stations. HOWEVER. Whenever I connect one of the base stations, which is configured as WDS Remote, via wired, I instantly loose my internet connection ... everywhere. Wired and wifi.
    The base stations get self assigned addresses and I have to take the cable out of the ABS-Remote and then, take the cable (from the Livebox to the ABS-n) out of the ABS-n and put it directly into my Mac, to get the connection back.
    I have restarted, zeroed everything many times. Finally I have narrowed the problem down to trying to have a wired connection to one of the WDS remotes. As soon as I plug a cable into a WDS Remote, I loose the connection.
    Can anyone suggest what I might be doing wrong, or how I could reconfigure to enable either the ABS-g (dual ethernet) or one of the ABSExpress's to operate via a wired connection, thus much more effectively extending the wifi network.
    Any help/pointers much appreciated.
    Grant

    Please take a look at this Apple Support reference to see if it will help you identify your AirPort: Identifying AirPort Hardware
    I have seen that link elsewhere on this board. Unfortunately it's out of date. Yes you can go to the first page and visually identify your airport unit, but there is no model number next to the pictures. Clicking the 'More Info' link returns an error that the page does not exist.
    The same holds true for the Apple pdf about designing Airport Networks. Dead link.
    In a roaming network, ALL of the AirPorts must be connected by Ethernet or be on the same Ethernet subnet. Adding the Ethernet switch to one the 802.11n AirPort Extreme Base Station's (AEBSn) LAN ports will provide the additional wired ports for the AEBS and the AXs.
    Since you have the AEBS connected by Ethernet to the Livebox, all of the AirPorts must all be reconfigured as bridges. Each will broadcast their own wireless network, but this network will have the same Network Name and use the same encryption setting. The only difference is that each AirPort must operate on a radio channel at least 3-5 channels away from that used by next nearest AirPort to prevent interference.
    Having spent another hour or so, reconfiguring again, I've understood, that I cannot have an unwired ABS on a roaming network, even if it would appear to be on the same subnet. It gets no IP and is therefore lost in space.
    So it would seem that anyone wishing to include some wired and some unwired ABS in a single 'seamless' network, needs to make a WDS for all the unwired ones ... and a Roaming network (with the same network name and password as the Main ABS network) for the wired ones.
    This is what I have done and it looks to be working perfectly. All are in Bridge mode and all are on Automatic Channel ... and I note that the Airport Utility automatically gave a very distant channel to the wired ABS.
    The network appears to be stable and fast. Phew.
    As an aside ... it's a shame that the Airport Utility, whilst clearly a very clever piece of software, doesn't have more helpful explanations of what is going on. The wording is often ambiguous at best. A teeny bit more explanation would have saved me hours and hours of wasted time.

  • Internet works, but I have an exclamation mark instead of AirPort connection and cannot connect to my WiFi.. PLEASE HELP!

    Internet works, but I have an exclamation mark instead of AirPort connection and cannot connect to my WiFi.. PLEASE HELP!

    When you see an exclamation point in the Wi-Fi menu, from the menu bar, select
     ▹ System Preferences... ▹ Network
    Click the Assist me button and select Assistant. Follow the prompts. You may get a warning that Wi-Fi is not available, that you're too far from the base station, or that you're using the wrong password.
    Assuming that you've ruled out those possibilities, restart the computer and try again. If there's no change, click the lock icon in the lower left corner of the preference pane and authenticate, if necessary. From the Location menu at the top of the window, select Edit Locations. A sheet will drop down. Click the plus-sign button to create a new location. Give it any name you want. In the new location, set up the Wi-Fi service with the same settings you used before. Click  Applyand test.
    If there's still no connection, and if you have control of the router, compare its settings to Apple's recommendations. Some third-party routers may be incompatible in 802.11b/g/n radio mode. Try setting the mode to 802.11n only.

  • I can't download the apple ios 5 for the ipad. after downloading around 10 % an error no. 3259 occurs. it's a network error. please help . it's urgent. i am having apple ipad 2 3G wifi

    i can't download the apple ios 5 for the ipad. after downloading around 10 % an error no. 3259 occurs. it's a network error. please help . it's urgent. i am having apple ipad 2 3G wifi.

    i switched off all the security settings and all the firewalls.
    i m unable to install any of the app on the ipad
    so i saw the apple support and it said to update the older version of my ipad.
    and niether am i able to download the update nor am i able to download any app and install it in my ipad2
    i also tried to download an .ipsw file (ios5 update) from torrentz bt i am also unable to install from that as itunes rjects that file and gives an error. and also tries to delete that file. plz anyone help urgently.

Maybe you are looking for

  • Ultra 10 + Sil0680 + 400GB drive still seen as 128GB

    I am trying to get a 400GB drive to work on an Ultra 10 with Solaris 10u4 (8/07) and the newest OBP (3.31). I understand that the on-board controller has a 128GB limit. However, I've done a fair amount of digging and from what I've read, a PCI card w

  • IMP-00017: failed with ORACLE error 942 (SYS.DBMS_REPUTIL.SYNC_UP_REP)

    Hi, I am trying to exp a table from an oracle 9i db to an oracle 11g db. exp USERID=user1/pass1@db9i TABLES=test FILE=test.dmp ROWS="y" statistics="none" GRANTS="n" INDEXES="n" TRIGGERS="n" CONSTRAINTS="n" While trying to import i get an error *"IMP-

  • How can I use the Control Design & Simulation module in the Mobile (PDA) modul?

    Hi everyone! I have to create Bode and Nyquist plot from Transfer function on a PDA, but I can't use CD&S Modul when I'm opening a new Mobile project. Thank you for your answer! Sincerely yours, Jenő Kocsis

  • My Applications Icons are not Show

    My applications Icons are no showing on some of the applications, like Bridge, Audition, Encore, Prelude, After the instalation with the Adobe Application Manager from Adobe Creative Cloud. Im using a My Configuration Windows 7 Ultimate 64bits Intel

  • Use of GAME_A key

    Hi, What is the use of GAME_A key........... I used MIDP2.0 and CLDC1.0 If I press GAME_A key then i want to call anyone method.... How to get this.... My code is here protected void keyPressed(int key) switch(getGameAction(key)){ case Canvas.DOWN: m