Batch file to determine browser master on windows domain
I have created a batch file that will scan your local network to determine which machine is your local browser master.
All you have to do is copy and paste the below into a batch file and then run it on any pc on the network.
Script details
TITLE Browse Master Finder
Color 18
cls
@ECHO OFF
ECHO This script is property of Mike. This script is to discover Browse Master.
ECHO.
ECHO.
for /f "delims=\= " %%C in ('net view ^| find "\\"') do @echo -Checking %%C && @nbtstat -a %%C | find "MSBROWSE"
pause
All you have to do is copy and paste the below into a batch file and then run it on any pc on the network.
Script details
TITLE Browse Master Finder
Color 18
cls
@ECHO OFF
ECHO This script is property of Mike. This script is to discover Browse Master.
ECHO.
ECHO.
for /f "delims=\= " %%C in ('net view ^| find "\\"') do @echo -Checking %%C && @nbtstat -a %%C | find "MSBROWSE"
pause
Comments
Post a Comment