2

I have just built a new server - windows server 2016

when trying to access its c: drive from any other server I was getting this error:

enter image description here

The I changed this settings:

enter image description here

and all is working fine.

question:

Is there a way to check if network discovery is on using powershell?

otherwise, when they give me another server, how can I check for this setting?

1 Answers1

3

It's not powershell, but:

Enable discovery: netsh advfirewall firewall set rule group="Network Discovery" new enable=Yes Disable discovery: netsh advfirewall firewall set rule group="Network Discovery" new enable=No

link

Luuk
  • 204