@echo off
:: ============================================================
:: GetUserAccountReport.bat
::
:: Reports Local User Accounts via WMI (Win32_UserAccount).
:: ============================================================

wmic path Win32_UserAccount get Name,FullName,Disabled,Lockout,LocalAccount /format:table

pause