UCS-2 Little Endian to UTF-8 conversion leaves file with many unwanted characters
I have a script that I put together after going over many different ways that I could do an encoding conversion using ADODB in VBScript. Option Explicit Sub UTFConvert() Dim objFSO, objStream, file file = "FileToConvert.csv" Set objStream = CreateObject( "ADODB.Stream" ) objStream.Open objStream.Type = 2 objStream.Position = 0 objStream.Charset = "utf-8" objStream.LoadFromFile file objStream.SaveToFile file, 2 objStream.Close Set objStream = Nothing End Sub UTFConvert The file is supposed to be converted from UCS-2 Little Endian, or whichever readable format it is in (within limitations), to