functions/registry/Enable-WUSuggestedContentInSettingsApp.ps1
<#
.DESCRIPTION This cmdlet works with registry. #> [CmdletBinding(SupportsShouldProcess)] param ( ) Set-StrictMode -Version 'Latest' $registryHash = Get-WURegistryHash if (!$registryHash) { return } Set-WURegistryFromHash -RegistryHash $registryHash -DataKey $MyInvocation.MyCommand.Verb |