Explique opções de comando do Windows "net view"

1

Alguém pode explicar a diferença entre esses comandos?

net view
net view /all
net view /domain
net view /all /domain
    
por Mike 25.11.2011 / 05:02

1 resposta

4

De net help view :

C:\Users\shufler>net help view
The syntax of this command is:

NET VIEW
[\computername [/CACHE] | [/ALL] | /DOMAIN[:domainname]]

NET VIEW displays a list of resources being shared on a computer. When used
without options, it displays a list of computers in the current domain or
network.

\computername             Is a computer whose shared resources you want
                           to view.
/DOMAIN:domainname         Specifies the domain for which you want to
                           view the available computers. If domainname is
                           omitted, displays all domains in the local area
                           network.
/CACHE                     Displays the offline client caching settings for
                           the resources on the specified computer
/ALL                             Displays all the shares including the $ shares

Então, vamos olhar para cada um deles.

net view retorna os computadores no domínio ou na rede atual. Esta lista mostrará apenas os computadores com compartilhamento de arquivos e impressoras ativado.
net view /all mostra todos os compartilhamentos disponíveis, incluindo compartilhamentos administrativos como C $ e admin $
net view /domain:contoso.com listará todos os computadores de compartilhamento no contoso domínio .com
net view /all /domain mostra todos os compartilhamentos (regulares e administrativos) no domínio

Atualmente, não estou conectado a um domínio, então, infelizmente, não posso fornecer exemplos.

    
por 25.11.2011 / 08:32

Tags