functions/registry/Disable-WebsiteAccessToLanguageList.ps1
function Disable-WUWebsiteAccessToLanguageList { [CmdletBinding(SupportsShouldProcess)] param ( ) Set-StrictMode -Version 'Latest' $registryHash = Get-WURegistryHash if (!$registryHash) { return } Set-WURegistryFromHash -RegistryHash $registryHash -DataKey $MyInvocation.MyCommand.Verb } |