@echo off
:: ============================================================
:: GetShareReport.bat
::
:: Reports Network Shares via WMI (Win32_Share).
:: ============================================================

wmic path Win32_Share get Name,Path,Description,Type /format:table

pause