Windows is Microsoft’s flagship operating system, developed since 1985 and dominating the desktop market worldwide. The latest version, Windows 11, updated the design while Windows 10 remains widely used.

Windows Version

# Get windows version - Old powershell
Get-WmiObject -Class Win32_OperatingSystem | select Version,BuildNumber
 
# Get windows version - New powershell
(Get-CimInstance Win32_OperatingSystem) | select Version,BuildNumber
 
# Get windows version - CMD
systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
 
# Get windows version - WMIC
wmic os get Version,BuildNumber

Services & Processes

Sysinternals Tools

The Sysinternals Tools suite is a set of portable Windows applications. The tools can be either downloaded or loaded directly from the accessible file share \\live.sysinternals.com\tools.

Non-Interactive Accounts

Non-interactive accounts require no login credentials. The three types (Local System, Local Service, and Network Service) have no passwords and typically start services at boot or run scheduled tasks.

AccountDescription
Local System Account
(NT AUTHORITY\SYSTEM)
Most powerful Windows account. Exceeds local administrators’ privileges. Used for OS-related tasks and services.
Local Service Account
(NT AUTHORITY\LocalService)
Limited version of SYSTEM. Similar to local user privileges. Can start some services.
Network Service Account
(NT AUTHORITY\NetworkService)
Similar to domain user account. Has local machine privileges like Local Service. Can authenticate for network services.

Windows Command Line

Windows Defender Antivirus

Windows Defender Antivirus (Defender) is Microsoft’s built-in security solution that comes free with Windows operating systems. Originally released as a downloadable anti-spyware tool for Windows XP, it evolved into a comprehensive antivirus solution.

# Check defender protection enabled - Powershell
Get-MpComputerStatus | findstr "True"

2 items under this folder.