🖥️ Batch (CMD)

Get Network Login Profiles Report (Batch)

Uses wmic to list Network Login Profiles (Win32_NetworkLoginProfile) straight from the command line.

By WindowsScripting.com · 339 B
GetNetworkLoginProfileReport.bat
@echo off
:: ============================================================
:: GetNetworkLoginProfileReport.bat
::
:: Reports Network Login Profiles via WMI (Win32_NetworkLoginProfile).
:: ============================================================

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

pause