All Tweaks

Windows Features

Check Disabled Features

Verify which Windows features are currently disabled

Benefit

Helps identify which features have been disabled and monitor system configuration

Impact

low

Commands (1)

Get-WindowsOptionalFeature -Online | Where-Object { $_.State -eq 'Disabled' -or $_.State -eq 'DisabledWithPayloadRemoved' } | Sort-Object FeatureName | Format-Table FeatureName,State -AutoSize