I needed to read some info from XML so i found out that I needed to use COM objects. Oh well, I went and tried it. Its so complicated and I just want to read an XML (text file)! So, here is what I came up with: Examples: Local $xmlPath = @ScriptDir & '\data.xml' If Not FileExists($xmlPath) Then Exit $file = FileRead($xmlPath) $file = StringReplace($file, @LF, '') $file = StringSplit($file, @CR, 1) MsgBox(0, 'DONE!!!', XMLget($file, 'adc_database\currentconditions\realfeel')) MsgBox(0,