mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-07-03 07:08:27 +00:00
15 lines
364 B
PowerShell
15 lines
364 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Filters a list of features to those that have a non-empty RegistryKey.
|
|
|
|
.PARAMETER Features
|
|
An array of feature objects to filter.
|
|
#>
|
|
function Get-RegistryBackedFeatures {
|
|
param(
|
|
[object[]]$Features = @()
|
|
)
|
|
|
|
return @($Features | Where-Object { -not [string]::IsNullOrWhiteSpace([string]$_.RegistryKey) })
|
|
}
|