Windows 10: My PC is not listed in Network

Discus and support My PC is not listed in Network in Windows 10 Network and Sharing to solve the problem; Hi Eagle51 I have done all cleanup and also the tcpip reset. Still sharing problem after restart All firewalls are disabled and the services are... Discussion in 'Windows 10 Network and Sharing' started by wortex, Jul 17, 2017.

  1. wortex Win User

    My PC is not listed in Network


    Hi Eagle51

    I have done all cleanup and also the tcpip reset. Still sharing problem after restart
    All firewalls are disabled and the services are configured as your list

    On my HT-PC, all computers are now listed in Network list and i can se all 4 shared HT-PC folders. but when I click on one of my shared HT-PC folders under Network I get this error message during network diagnostic.

    Problem found
    The remote device or resource won´t accept the connection

    "The divice or resource (HT-PC) is not set up to accept connections om port "The File and printer sharing (SMB)".

    Do you know why?
     
    wortex, Jul 24, 2017
    #16
  2. Eagle51 Win User

    Hey wortex,
    Lets check SMB ...
    1. Control Panel > Programs and Features > Turn Windows Features On or Off and make sure SMB 1.0/CIFS File Sharing Support is enable/checked.

    2. Open PowserShell as Administrator run the following command and paste results
    Get-SmbServerConfiguration | Select EnableSMB1Protocol, EnableSMB2Protocol
     
    Eagle51, Jul 24, 2017
    #17
  3. wortex Win User
    Hi Eagle51 & thanks for quick response

    I am very grateful for your help

    1 was not enabled. I enabled it and restarted the HT-PC, but now the HT-PC is not visible in Network list on any computer.

    ...then i run 2 and both was true.

    Next step?
     
    wortex, Jul 24, 2017
    #18
  4. wortex Win User

    My PC is not listed in Network

    Hi again

    After a couple restarts on the HT-PC it shows up in the Network list but still same problem and error message

    Problem found
    The remote device or resource won´t accept the connection

    "The divice or resource (HT-PC) is not set up to accept connections om port "The File and printer sharing (SMB)".

    And same info with ipconfig
     
    wortex, Jul 24, 2017
    #19
  5. wortex Win User
    Hi again

    One step closer

    Now is it possible to open HT-PC shared folders in Networklist on the HT-PC.
    The HT-PC is visible on the other computer but not accessible

    I got same error message on other computer in network when trying to access shared HT-PC folders

    Problem found
    The remote device or resource won´t accept the connection

    "The divice or resource (HT-PC) is not set up to accept connections om port "The File and printer sharing (SMB)".
     
    wortex, Jul 24, 2017
    #20
  6. Eagle51 Win User
    Have you done my post #15 on the other computer to see what it says ?
     
    Eagle51, Jul 24, 2017
    #21
  7. wortex Win User
    Hi

    Yes on my laptop.
    1 OK
    2 Nothing on SMB1 and True on SMB2

    The laptop can access my son Eddies computer. My HT-PC can access my laptop and Eddies computer
     
    wortex, Jul 24, 2017
    #22
  8. Eagle51 Win User

    My PC is not listed in Network

    K, lets make sure both PCs are using the same SMB and for now we want to use SMB1 on both.

    On the laptop ...
    Open PowerShell as Administrator and run the following command
    Set-SmbServerConfiguration -EnableSMB1Protocol $true

    Then run this one and make sure both are yes
    Get-SmbServerConfiguration | Select EnableSMB1Protocol, EnableSMB2Protocol

    On both PCs ...
    Open Command Prompt as Administrator
    sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
    sc.exe config mrxsmb10 start= auto



    Reboot both PCs
     
    Eagle51, Jul 24, 2017
    #23
  9. wortex Win User
    Hi

    Both HT-PC and laptop had been configured with your last info.

    Then 2 restarts on both HT-PC and laptop. Now is not HT-PC visible in network list on no computer.

    When I try \\192.168.1.64 in search on laptop i get same error message with problem with SMB on HT-PC.
     
    wortex, Jul 24, 2017
    #24
  10. Eagle51 Win User
    I'm still not sure why your nebios/tcpip is disable or how to fix it right now *Sad ... but since your netbios/tcpip is showing disabled in ipconfig you won't be able to use the \\192.168.1.64\ShareName ... See if \\ComputerName\ShareName works ?
     
    Eagle51, Jul 24, 2017
    #25
  11. Eagle51 Win User
    FYI ... On the SMB stuff ...
    For now you want both SMB1 and SMB2 server/client protocols enabled on ALL PC's.
    SMB2 is preferred over SMB1 and once you get things working, you may want to disable SMB1, but you don't have to.

    The BOLD is want to you want run on each PC and you must reboot each PC for them to take effect.

    PowerShell as Administrator ...
    Get-SmbServerConfiguration | Select EnableSMB1Protocol, EnableSMB2Protocol
    If one shows No ... see the Server Commands below to enable it
    Command Prompt as Administrator ....
    sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
    sc.exe config mrxsmb10 start= auto
    sc.exe config mrxsmb20 start= auto

    ===============================================================

    Server Commands to be run in PowerShell as Administrator ...

    To obtain the current state of the SMB server protocol configuration, run the following cmdlet:
    Get-SmbServerConfiguration | Select EnableSMB1Protocol, EnableSMB2Protocol

    To disable SMBv1 on the SMB server, run the following cmdlet:
    Set-SmbServerConfiguration -EnableSMB1Protocol $false
    To enable SMBv1 on the SMB server, run the following cmdlet:
    Set-SmbServerConfiguration -EnableSMB1Protocol $true
    To disable SMBv2 and SMBv3 on the SMB server, run the following cmdlet:
    Set-SmbServerConfiguration -EnableSMB2Protocol $false
    To enable SMBv2 and SMBv3 on the SMB server, run the following cmdlet:
    Set-SmbServerConfiguration -EnableSMB2Protocol $true
    =============================================================

    Client Commands to run in Command Prompt as Administrator ....

    To disable SMBv1 on the SMB client, run the following commands:
    sc.exe config lanmanworkstation depend= bowser/mrxsmb20/nsi
    sc.exe config mrxsmb10 start= disabled
    To enable SMBv1 on the SMB client, run the following commands:
    sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
    sc.exe config mrxsmb10 start= auto

    To disable SMBv2 and SMBv3 on the SMB client, run the following commands:
    sc.exe config lanmanworkstation depend= bowser/mrxsmb10/nsi
    sc.exe config mrxsmb20 start= disabled
    To enable SMBv2 and SMBv3 on the SMB client, run the following commands:
    sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
    sc.exe config mrxsmb20 start= auto


    Reference ... https://support.microsoft.com/en-us/...ws-and-windows
     
    Eagle51, Apr 5, 2018
    #26
Thema:

My PC is not listed in Network

Loading...
  1. My PC is not listed in Network - Similar Threads - listed Network

  2. I can't connect to my Wifi, usually when I open the list of available networks, it says "No...

    in Windows 10 Software and Apps
    I can't connect to my Wifi, usually when I open the list of available networks, it says "No...: While I was away, I had my laptop shut down for the duration 12 days. When I got back and went on my laptop, it was working just fine, I connected successfully, however that only lasted for a few minutes, as I was disconnected soon after. Since it was late already, I just...
  3. I can't connect to my Wifi, usually when I open the list of available networks, it says "No...

    in Windows 10 Gaming
    I can't connect to my Wifi, usually when I open the list of available networks, it says "No...: While I was away, I had my laptop shut down for the duration 12 days. When I got back and went on my laptop, it was working just fine, I connected successfully, however that only lasted for a few minutes, as I was disconnected soon after. Since it was late already, I just...
  4. i can see other PCs and devices on my home network listed under NETWORK in file explorer,...

    in Windows 10 Gaming
    i can see other PCs and devices on my home network listed under NETWORK in file explorer,...: My PC recently updated to windows 11 and since then ive lost the ability to connect to any of my other network shares or devices , even though i can see them in file explorer. when i select the device like another PC or my NAS device it says \\DEVICENAME is not accessible....
  5. i can see other PCs and devices on my home network listed under NETWORK in file explorer,...

    in Windows 10 Software and Apps
    i can see other PCs and devices on my home network listed under NETWORK in file explorer,...: My PC recently updated to windows 11 and since then ive lost the ability to connect to any of my other network shares or devices , even though i can see them in file explorer. when i select the device like another PC or my NAS device it says \\DEVICENAME is not accessible....
  6. Network List service“MMC ”

    in Windows 10 Gaming
    Network List service“MMC ”: Network List service“MMC ”Network List service https://answers.microsoft.com/en-us/windows/forum/all/network-list/1849d556-f185-4c4b-8424-bb8c0f5b68be
  7. Network List service“MMC ”

    in Windows 10 Software and Apps
    Network List service“MMC ”: Network List service“MMC ”Network List service https://answers.microsoft.com/en-us/windows/forum/all/network-list/1849d556-f185-4c4b-8424-bb8c0f5b68be
  8. Wifi network not showing up in list of available networks

    in Windows 10 Gaming
    Wifi network not showing up in list of available networks: Troubleshooting Steps that I've tried :1. Move closer to the router2. Restart the wifi network adapter3. restart your modem, router, or access point4. restart your PCI have already asked this question few hours back but it is not solved yet. I need to solve this ASAP so I...
  9. Wifi network not showing up in list of available networks

    in Windows 10 Software and Apps
    Wifi network not showing up in list of available networks: Troubleshooting Steps that I've tried :1. Move closer to the router2. Restart the wifi network adapter3. restart your modem, router, or access point4. restart your PCI have already asked this question few hours back but it is not solved yet. I need to solve this ASAP so I...
  10. Wifi network not showing up in list of available networks

    in Windows 10 Software and Apps
    Wifi network not showing up in list of available networks: I have done lots things to solve this but it's not solving, please help https://answers.microsoft.com/en-us/windows/forum/all/wifi-network-not-showing-up-in-list-of-available/6393f1d9-f7b5-4d30-89dc-da1f74a8623f