@echo off
:: ============================================================
:: GetNetworkLoginProfileReport.bat
::
:: Reports Network Login Profiles via WMI (Win32_NetworkLoginProfile).
:: ============================================================

wmic path Win32_NetworkLoginProfile get Name,LastLogon,NumberOfLogons /format:table

pause