No longer able to see my computers under "network" in File explorer.

Page 2 of 2 FirstFirst 12

  1. Posts : 31,660
    10 Home x64 (22H2) (10 Pro on 2nd pc)
       #11

    sportflyer said:
    BTW What is the advantage of auto SMB1 removal if any ?
    It's a feature aimed at Business networks. SMB1 is removed because (amongst other things) it's old and vulnerable, it was one of the methods WannaCry used to spread through corporate networks. Relatively safe for home use, but not suitable for use in the Enterprise.
      My Computers


  2. Posts : 360
    win10
    Thread Starter
       #12

    Is there a replacement for SMB1 . Can I turn it off and use another protocol to discover all my network computers ? All my computers are running Win10 . Tks
      My Computer


  3. Posts : 360
    win10
    Thread Starter
       #13

    Eagle51 said:
    IMO None ... As previous mentioned it's deprecated by MS, so if you wish to stop using SMBv1 just uninstall it.

    It's probably another router or maybe a Smart Tv that's in range that you're picking up. A lot of different routers are based on that "Ralink Linux Client" and here's an old Ten Forums post about it Ralink Linux Client showing up in Windows Network - Windows 10 Forums
    BTW Ralink linux client no longer shows as a computer after I changed the PW of the Router . I wonder why .
      My Computer


  4. Posts : 1,767
    Windows 10 Pro (+ Windows 10 Home VMs for testing)
       #14

    The SMB v1.0/CIFS Automatic Removal feature can be removed with a PowerShell one-liner:
    Code:
    Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol-Deprecation -NoRestart
    It requires elevation so remember to choose Windows PowerShell (Admin) from the right-click Power menu or you'll get an error.

    If you have AutoHotkey installed then it's even easier:
    Code:
    ; Prompt to 'Run as Admin', i.e. show UAC dialog
    If Not A_IsAdmin
    {
       Run *RunAs "%A_ScriptFullPath%"  ; Requires v1.0.92.01+
       ExitApp
    }
    
    psScript =
    (
    Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol-Deprecation -NoRestart
    )
    
    RunWait PowerShell.exe -Command %psScript%,, hide
    MsgBox, SMB1 Automatic Removal, Done! The feature has been removed.
    ExitApp
    This AHK script will pop a User Account Control (UAC) prompt to allow elevation, run the PowerShell one-liner then display a message when it's finished.

    Hope this helps...
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 01:43.
Find Us




Windows 10 Forums