forked from msaroff/bbCodeWebEx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoutf8.cmd
More file actions
24 lines (23 loc) · 2.33 KB
/
toutf8.cmd
File metadata and controls
24 lines (23 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
rem excel does not export properly UTF 8 csv for conversion to JSON. This run in powershell does
rem This takes a file and outputs it as utf-8 in the utf8 subdirectory
powershell "get-content C:\Moo\bbCodeWebex_Temp\en-US.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\en-US.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\de.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\de.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\es-ES.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\es-ES.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\fi.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\fi.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\fr.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\fr.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\he.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\he.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\it.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\it.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\ja.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\ja.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\ko.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\ko.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\pl.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\pl.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\pt-BR.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\pt-BR.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\pt-PT.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\pt-PT.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\ru.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\ru.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\sk.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\sk.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\sr.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\sr.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\th.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\th.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\zh-TW.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\zh-TW.csv"
powershell "get-content C:\Moo\bbCodeWebex_Temp\DefMenu.csv | out-file -encoding utf8 C:\Moo\bbCodeWebex_Temp\utf8\DefMenu.csv"
pause
dir C:\Moo\bbCodeWebex_Temp\utf8 /p
pause