This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Interval = Read-Host -Prompt 'Write time interval in seconds. Default is 1 second' | |
if ($Interval -le 0) { | |
$Interval = 1 | |
} | |
if ($Interval -lt 0.25) { | |
$Interval = 0.25 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set layout to spanish | |
$LanguageList = New-WinUserLanguageList es-ES | |
Set-WinUILanguageOverride -Language $LanguageList | |
Set-WinUserLanguageList $LanguageList -Force | |
Set-WinDefaultInputMethodOverride -InputTip "0409:0000040A" | |
Write-Output "Done" |
OlderNewer