Windows 10: Windows 10 Hardware Wifi Switch Behavior (vs Windows 7)

Discus and support Windows 10 Hardware Wifi Switch Behavior (vs Windows 7) in Windows 10 Network and Sharing to solve the problem; My system is a Dell Latitude E6330, with a physical wifi switch. I'll often use the wifi switch to toggle off the internal wifi adapter, and plug in... Discussion in 'Windows 10 Network and Sharing' started by metal450, Feb 25, 2018.

  1. metal450 Win User

    Windows 10 Hardware Wifi Switch Behavior (vs Windows 7)


    My system is a Dell Latitude E6330, with a physical wifi switch.

    I'll often use the wifi switch to toggle off the internal wifi adapter, and plug in an external USB wifi adapter with an antenna to get better range.

    However, upon upgrading from Windows 7 to Windows 10, flipping the wifi switch now puts the entire OS into "Airplane Mode," disabling *all* wifi adapters - both internal and USB. This means the switch is no longer functional for me: every time I want to use the external wifi adapter, I now have to manually go into device manager, find the internal wifi card, disable it, & do the opposite when I'm done. Rather than just flipping that switch and plugging in the external adapter.

    How can I make the hardware wifi switch work properly again, like it did under Windows 7? i.e. the wifi switch on the laptop should only turn off the laptop's internal wifi - not put the entire system into airplane mode?

    Thanks in advance *Smile

    :)
     
    metal450, Feb 25, 2018
    #1
  2. Sumit Dhiman2, Feb 25, 2018
    #2
  3. How can I configure Samsung Focus so that it won't power off when it is locked or so that confirmation is required to turn it off?

    I can confirm that this feature is not device specific. The phone is switched off if you keep pressing the power button for a few seconds. Hardware manufacturer can influence this by designing the button so it can't be pressed inadvertently. There is currently
    no way to modify this behavior in Windows Phone 7.
     
    Jiri H. - MSFT, Feb 25, 2018
    #3
  4. Windows 10 Hardware Wifi Switch Behavior (vs Windows 7)

    It was most likely a driver configuration offered by HP for that hardware switch. Windows 10 replaced it with it's own to then use Airplane Mode.

    The only option I see on getting it back to how it used to be is to make sure you are fully updated with all of the available HP Windows 10 drivers.
     
    Masterchiefxx17, Mar 3, 2018
    #4
  5. metal450 Win User
    Interesting thought. Do you have any idea which driver it would be? If what you say is the case, it seems most likely to me that it would be the driver for the wifi card itself - but on my system, that's provided by Intel, not Microsoft (which is the same as it was before). So if it's indeed a driver, it would probably have to be something else...but it's hard to know which it might be...
     
    metal450, Mar 3, 2018
    #5
  6. Well, HP may inject additional content into the driver before it gets to you. Windows 10 would have updated the drivers to the latest manufacturer provided ones or used a generic driver.

    I would check HP's website and grab all of the latest ones.
     
    Masterchiefxx17, Mar 4, 2018
    #6
  7. metal450 Win User
    Actually, now that I think about it it can't be the wifi driver. Not only is this not the wifi card that came with the laptop (I replaced it some years later), but the driver I'm using isn't even from Dell. Plus, the hardware switch always disabled just the internal wifi card (not all network connections on the system), for both the original wifi card that came with the laptop and the one I swapped it with later. So if it is a specific driver, seems like it definitely can't be the wifi card's...
     
    metal450, Mar 4, 2018
    #7
  8. Windows 10 Hardware Wifi Switch Behavior (vs Windows 7)

    You could write a script that will enable or disable either of the wireless adapters.

    Here's my wi-fi disable script called "Wireless.disable.wsf".
    From a command line run it by typing "cscript Wireless.disable.wsf". Code: <package> <comment> Wireless.disable.wsf - Disables your Wi-Fi Connection </comment> <job> <object id="objShell" progid="Shell.Application"/> <script language="VBScript"> Option Explicit Dim objCP, objDisable, objEnable Dim clsConn, clsThisConn, clsVerb Dim strNetConn, strConn, strEnable, strDisable Dim bEnabled, bDisabled strConn = "Wi-Fi" ' This must match the name in the Network Connections control panel strEnable = "En&able" strDisable = "Disa&ble" Set objCP = objShell.Namespace(49) ' 49 = Network Connections Set clsThisConn = Nothing For Each clsConn in objCP.Items If clsConn.Name = strConn Then Set clsThisConn = clsConn Exit For End If Next If clsThisConn is Nothing Then WScript.Echo "Wi-Fi connection not found" WScript.Quit End If bEnabled = False Set objDisable = Nothing For Each clsVerb in clsThisConn.verbs If clsVerb.name = strDisable Then Set objDisable = clsVerb bEnabled = True End If Next If bEnabled Then objDisable.DoIt WScript.Echo "Wi-Fi disabled" Else WScript.Quit WScript.Echo "Wi-Fi was already disabled" End If ' Give the connection time to stop/start WScript.Sleep 1000 </script> </job> </package>[/quote] And here's the corresponding enable script: Code: <package> <comment> Wireless.disable.wsf - Disables your Wi-Fi Connection </comment> <job> <object id="objShell" progid="Shell.Application"/> <script language="VBScript"> Option Explicit Dim objCP, objDisable, objEnable Dim clsConn, clsThisConn, clsVerb Dim strNetConn, strConn, strEnable, strDisable Dim bEnabled, bDisabled strConn = "Wi-Fi" ' This must match the name in the Network Connections control panel strEnable = "En&able" strDisable = "Disa&ble" Set objCP = objShell.Namespace(49) ' 49 = Network Connections Set clsThisConn = Nothing For Each clsConn in objCP.Items If clsConn.Name = strConn Then Set clsThisConn = clsConn Exit For End If Next If clsThisConn is Nothing Then WScript.Echo "Wi-Fi connection not found" WScript.Quit End If bEnabled = False Set objDisable = Nothing For Each clsVerb in clsThisConn.verbs If clsVerb.name = strDisable Then Set objDisable = clsVerb bEnabled = True End If Next If bEnabled Then objDisable.DoIt WScript.Echo "Wi-Fi disabled" Else WScript.Quit WScript.Echo "Wi-Fi was already disabled" End If ' Give the connection time to stop/start WScript.Sleep 1000 </script> </job> </package>[/quote] You might need to modify this line in each script: Code: strConn = "Wi-Fi" ' This must match the name in the Network Connections control panel[/quote] In control panel my wi-fi connection has the name you see above. Yours will be different, especially your external/plug-in wireless adapter.

    Rather than open a command window to run these, you could create a shortcut for each script, and then just click the appropriate shortcut to enable or disable your wi-fi.
     
    margrave55, Mar 5, 2018
    #8
  9. metal450 Win User
    That's pretty handy, thanks. But my system does have a *physical* wifi switch (which I can toggle without even waking up the PC, or while it's booting, etc). That's what I'd like to get working properly again...
     
    metal450, Apr 5, 2018
    #9
Thema:

Windows 10 Hardware Wifi Switch Behavior (vs Windows 7)

Loading...
  1. Windows 10 Hardware Wifi Switch Behavior (vs Windows 7) - Similar Threads - Hardware Wifi Switch

  2. Windows key 7 vs 10

    in Windows 10 Gaming
    Windows key 7 vs 10: I have an old laptop that has Windows 7. I also have a Windows 10 on my pc. I want to have a clean install of Windows 10 on laptop because i am changing the hdd to ssd.If i create a boot disc for windows 10 and install it on the laptop, can i use the windows 7 activation key?...
  3. Windows key 7 vs 10

    in Windows 10 Software and Apps
    Windows key 7 vs 10: I have an old laptop that has Windows 7. I also have a Windows 10 on my pc. I want to have a clean install of Windows 10 on laptop because i am changing the hdd to ssd.If i create a boot disc for windows 10 and install it on the laptop, can i use the windows 7 activation key?...
  4. backup and restore: Windows 7 vs. 10

    in Windows 10 Installation and Upgrade
    backup and restore: Windows 7 vs. 10: Windows 7 Backup and Restore had an option to create a system image, which I included with the backup files on an external drive. What is the Windows 10 backup System Image equivalent, and how is it created?...
  5. Windows 7 vs Windows 10

    in Windows 10 BSOD Crashes and Debugging
    Windows 7 vs Windows 10: Why I feel Windows 10 is acting slower than Windows 7 in my machine? My device is Dell latittude e5410. RAM 4GB DDR3. HDD 500GB. CPU core i5 3rd gen. I know it's old. But windows 7 and windows 10's minimum requirement is completely same. Then why windows 10 seems slower....
  6. Windows 7 vs 10

    in Windows 10 BSOD Crashes and Debugging
    Windows 7 vs 10: Running Adobe programs I have a new windows 10 computer bigger faster 32g ram you name it but it is so much slower then my old windows 7 computer why https://answers.microsoft.com/en-us/windows/forum/all/windows-7-vs-10/16332006-550c-4ae1-8718-ee19372bcff6
  7. Windows 10 vs. 7

    in Windows 10 Installation and Upgrade
    Windows 10 vs. 7: How do I get my windows 7 back? When I upgraded I lost all my Office Package (i.e. word, excel, powerpoint, etc.). https://answers.microsoft.com/en-us/windows/forum/all/windows-10-vs-7/598e0d36-869b-4fcf-98eb-b1866a3dddef
  8. Windows 7 vs Windows 8 vs Windows 10

    in Windows 10 Support
    Windows 7 vs Windows 8 vs Windows 10: I'm a Mac person... What is the difference between Windows 7 and Windows 8 and Windows 10? I've learned that newer is not always better. Also, I believe Windows 7 or Windows 8 was considered a bomb, right? The content of this question is I am trying to figure out...
  9. Windows 7 inplace install 10 vs ?

    in Windows 10 Installation and Upgrade
    Windows 7 inplace install 10 vs ?: Likely a few months before 10 starts shipping with new machines I need a new laptop. I might be able to plead desperation with my wife and continue to use her laptop until Lenovo starts shipping 10. Even that's not such a hot idea since it could be 3 or 4 months instead of 2....
  10. Windows 10 vs. Windows 8.1 vs. Windows 7 Performance

    in Windows 10 News
    Windows 10 vs. Windows 8.1 vs. Windows 7 Performance: Three years ago we were benchmarking Microsoft's then latest operating system, Windows 8. At the time we were keen to make sure Windows 8 performed as well as Windows 7, which was a huge upgrade from 2006's Windows Vista. In the end, we determined that Windows 8 was on par...