Link to home
Start Free TrialLog in
Avatar of cebu1014
cebu1014

asked on

Cant browse PC in network

Added a new laptop to network.  It has internet.   I can ping existing hosts from new laptop however I cant find existing machines using map command either using \\ipaddress\sharename or \\hostname\sharename or simply \\ipaddress in command line. Its says network provider not found.  Existing machines can map to each other if needed. I change hosts file but still no change on new laptop.

The machines are in a workgroup
Avatar of Giovanni
Giovanni
Flag of United States of America image

Have you tried disabling the firewall completely?

 
@echo off
reg add HKLM\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy\DomainProfile /v EnableFirewall /t REG_DWORD /d 0 /f
reg add HKLM\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy\PublicProfile /v EnableFirewall /t REG_DWORD /d 0 /f
reg add HKLM\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy\StandardProfile /v EnableFirewall /t REG_DWORD /d 0 /f
reg add HKLM\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile /v EnableFirewall /t REG_DWORD /d 0 /f
reg add HKLM\SOFTWARE\Policies\Microsoft\WindowsFirewall\StandardProfile /v EnableFirewall /t REG_DWORD /d 0 /f
netsh firewall set opmode mode=disable profile= ALL
sc stop SharedAccess
sc config SharedAccess start= disabled

Open in new window

Also, have you verified the workgroup names match?  That the laptop workgroup wasn't misspelled?
Avatar of cebu1014
cebu1014

ASKER

Firewall is disabled on PC's. The machines are in another location from where I am located. Have VPN/Firewall device   so I can access all machines remotely using VNC.
start>run>"\\existingPC"

What are you presented with? Shouldn't receive the Provider error without specifying a share.....
I am sorry about error return. It says "the network path was not found"  when using \\hostname. It did not say network provider error
Workgroup names do match.
One thing I did notice,while logged on as admin, I cant  change the workgroup name. It  is grayed out.
Paste the output of the following command
nbtstat -n > "%userprofile%\desktop\nbtstat.txt"

Open in new window

I figured it out. When the machine was used here it was connected to network via ethernet. It has since been configured to wireless only at the remote site. The wireless device did not have the Client for Microsoft Networks installed.
Why your at it... also post the output of the following.  Try a host name and ip address which is reachable from the laptop via ping.  Also, is the laptop wired or wireless?  Is it going through a different switch than the other machines, initially?
nbtstat -a host
nbtstat -A ip

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Giovanni
Giovanni
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial