Aqui está uma maneira bastante circular.
Crie um arquivo BAT que invoque o NET VIEW, processe a saída em um arquivo HTML e chame o HTML - localmente, sem precisar de um servidor web. Seus usuários simplesmente clicariam duas vezes no arquivo BAT.
Aqui está um exemplo:
CONTEÚDO do netview.bat:
REM Put the output of the net view command into a file
net view > c:\public\netview.txt
REM Process the file to produce an HTML file
perl netview.pl < c:\public\netview.txt > c:\public\netview.html
REM invoke the HTML file to display the result
c:\public\netview.html
O resultado seria um arquivo html como este:
<html><body>
<a href="\BASS" >BASS - Description Bay Area Storage Server</a>
</body></html>
Isso resultaria em uma exibição com links clicáveis como este:
BASS - Descrição: Bay Area Storage Server
Como eu disse para começar, é redondo. Mas talvez ajude.