🖥️ Batch (CMD)
Get Services Report (Batch)
Uses wmic to list Services (Win32_Service) straight from the command line.
GetServiceReport.bat
@echo off
:: ============================================================
:: GetServiceReport.bat
::
:: Reports Services via WMI (Win32_Service).
:: ============================================================
wmic path Win32_Service get Name,DisplayName,State,StartMode,Status /format:table
pause