Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Laptop disconnects frequently from WiFi  (Read 15200 times)

0 Members and 1 Guest are viewing this topic.

Lankesh

    Topic Starter


    Newbie

    • Experience: Beginner
    • OS: Windows 10
    Laptop disconnects frequently from WiFi
    « on: May 26, 2020, 01:50:15 AM »
    Hi everyone,

    My office laptop disconnects frequently from my home WiFi whereas my personal laptop has no problem.
    One strange thing is, once my office laptop is disconnected, all other devices like mobile phones, etc. stop working. They show "No Internet" message. You won't be able to browse internet on them.

    So far, I have tried to
    Uncheck the checkbox - "Allow computer to turn off this device to save power" for the Wireless adapter.
    But no effect.

    Updated all the drivers - no effect.

    Is there anything that I should try now?

    Office laptop configuration - Dell Latitude 5590, Windows 10 Enterprise 64 bit
    It also has Cisco AnyConnect that is used to connect to office WiFi in all office premises.

    WiFi Router - TP-LINK TL-WR841N

    Hackoo



      Hopeful
    • Thanked: 42
    • Experience: Expert
    • OS: Windows 10
    Re: Laptop disconnects frequently from WiFi
    « Reply #1 on: June 10, 2020, 03:32:07 AM »
    Hi  ;)
    I want to share with you my vbscript in order to create a shortcut on the desktop for Network Diagnostics in order to fix my internet connection.
    This vbscript is tested by me only on my Windows 10 (32 bits).
    Just give a try and tell me if the problem was solved or not ?

    How to use this vbscript ?
    Just open your Notepad or Notepad++ and copy and paste this code below and save it as : Network_Diagnostics.vbs and run it by double click, so you will get a shortcut on your desktop for running Network Diagnostics in order to fix some issues that can be encountred when trying to connect to the internet !
    NB : You can also run this tool with this hotkey combination : CTRL+ALT+D

    Network_Diagnostics.vbs
    Code: [Select]
    Option Explicit
    ' Vbscript Created by Hackoo on 09/06/2020 @16:00
    ' Tested only on Windows 10 (32 bits)
    Dim Title : Title = "Shortcut Creator for Network Diagnostics by Hackoo 2020"
     
    Call Create_Shortcut(_
        "NetworkDiagnostics",_
        "%SystemRoot%\system32\msdt.exe",_
        "-skip TRUE -path %Windir%\diagnostics\system\networking -ep NetworkDiagnosticsPNI",_
        "%SystemRoot%\system32\msdt.exe,0",_
        "Network Diagnostics to fix problems",_
        "CTRL+ALT+D"_
    )
     
    MsgBox "The shortcut was created successfully on your desktop !" & vbCrlf &_
    "Le raccourci a été créé avec succès sur votre bureau !" & vbcrlf &_
    "تم إنشاء الاختصار بنجاح على سطح المكتب الخاص بك !",vbInformation,Title
    '---------------------------------------------------------------------------------------
    Sub Create_Shortcut(ShortcutName,TargetPath,Arguments,IconLocation,Description,HotKey)
        Dim objShell,DesktopPath,objShortCut
        Set objShell = CreateObject("WScript.Shell")
        DesktopPath = objShell.SpecialFolders("Desktop")
        Set objShortCut = objShell.CreateShortcut(DesktopPath & "\" & ShortcutName & ".lnk")
        objShortCut.TargetPath = chr(34) & TargetPath & chr(34)
        objShortCut.Arguments = Arguments
        ObjShortCut.IconLocation = IconLocation
        ObjShortCut.Description = Description
        ObjShortCut.HotKey= HotKey
        objShortCut.Save
    End Sub
    '--------------------------------------------------------------------------------------

    For any update of this vbscript you will find it here