tangled
alpha
login
or
join now
biscui.tech
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
feat: added windows scripts folder
biscui.tech
2 years ago
cc4d4892
1fc5722b
+9
1 changed file
expand all
collapse all
unified
split
scripts
FixAutoAddedKBLayout.ps1
+9
scripts/FixAutoAddedKBLayout.ps1
···
1
1
+
param (
2
2
+
[String]$LanguageToFix = 'en-US'
3
3
+
)
4
4
+
5
5
+
$lng = Get-WinUserLanguageList
6
6
+
$lng.Add($LanguageToFix)
7
7
+
Set-WinUserLanguageList -Force $lng
8
8
+
$lng.Remove( ( $lng | Where-Object LanguageTag -like $LanguageToFix ) ) 2>&1 | Out-Null
9
9
+
Set-WinUserLanguageList -Force $lng