mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
21 lines
329 B
PowerShell
21 lines
329 B
PowerShell
$Lcids = ([System.Globalization.CultureInfo]::GetCultures( [System.Globalization.CultureTypes]::AllCultures ) | Select-Object -ExpandProperty Name)
|
|
|
|
foreach($i in $Lcids) {
|
|
|
|
echo Set-Culture $i
|
|
Set-Culture $i
|
|
Start-Sleep -Seconds 1
|
|
echo .\run2.vbs $i
|
|
|
|
.\run2.vbs $i
|
|
Start-Sleep -Seconds 7
|
|
|
|
}
|
|
|
|
Set-Culture ru-Ru
|
|
|
|
|
|
|
|
|
|
|