Silence output

This commit is contained in:
Anthony Rose 2024-06-05 10:24:45 +01:00
parent b65d4787b1
commit 16fbc5f58f

View file

@ -69,8 +69,8 @@ function Set-AcpLocale {
# Get the default locale back.
$AcpLocale = Get-WinUserLanguageList
# Remove the British layout and add the US layout.
$AcpLocale[0].InputMethodTips.Remove("0809:00000809")
$AcpLocale[0].InputMethodTips.Add("0809:00000409")
$AcpLocale[0].InputMethodTips.Remove("0809:00000809") | Out-Null
$AcpLocale[0].InputMethodTips.Add("0809:00000409") | Out-Null
# Set the locale to our customised version.
Set-WinUserLanguageList -LanguageList $AcpLocale -Force
# Clean up.