August 2019
Intermediate to advanced
786 pages
20h 22m
English
We need to verify whether the SYSVOL share exists on the domain controllers. This is one of the basic troubleshooting steps. This can be done by running the following command on a domain controller:
For /f %s IN ('dsquery server -o rdn') do @echo %s && @(net view \\%s | find "SYSVOL") & echo
This will list down the servers and the SYSVOL shares that are available:
