Search found 4 matches

by alexo
2021-Sep-26, 1:03 am
Forum: Windows CMD Shell
Topic: NET VIEW alternative for Win10
Replies: 5
Views: 7424

Re: NET VIEW alternative for Win10

Success! @echo off setlocal enableextensions enabledelayedexpansion for /f "skip=3 tokens=1,3" %%a in ('arp -a') do ( set ip=%%a if "%%b" == "dynamic" if not "!ip:~0,7!" == "169.254" ( for /f "skip=8 tokens=1-3" %%b in ('nbtstat -A %%a') do...
by alexo
2021-Sep-25, 1:14 pm
Forum: Windows CMD Shell
Topic: NET VIEW alternative for Win10
Replies: 5
Views: 7424

Re: NET VIEW alternative for Win10

As I wrote in the original post, I already see the devices in Explorer. I am trying to get them on a command line.
by alexo
2021-Sep-25, 12:44 pm
Forum: Windows CMD Shell
Topic: NET VIEW alternative for Win10
Replies: 5
Views: 7424

Re: NET VIEW alternative for Win10

This is a home network, I am not on a domain.
by alexo
2021-Sep-25, 4:50 am
Forum: Windows CMD Shell
Topic: NET VIEW alternative for Win10
Replies: 5
Views: 7424

NET VIEW alternative for Win10

Apparently the NET VIEW (without parameters) functionality is dependent on the insecure and deprecated SMB1 protocol, which is disabled by recent versions of Windows 10 (mine is 20H2). Windows Explorer works just fine without it but I am trying to get a list of computers on the network (their NETBIO...