It may be that I just haven't found the parser and it does exist. Here is the code that I am using. The file EtormFS.evt is a system event log from another computer named Etormfs. Thank you for all of your responses.
Const NO_VALUE = Empty
Const OverwriteExisting = TRUE
Const DeleteReadOnly = TRUE
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.CopyFile "c:\etorm\ETORMFS.evt" , "c:\windows\system32\config\", OverwriteExisting
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKLM\System\CurrentControlSet\Services\EventLog\ETORMFS\", NO_VALUE
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colLoggedEvents = objWMIService.ExecQuery _
("Select * from Win32_NTLogEvent Where Logfile = 'ETORMFS'")
For Each objEvent in colLoggedEvents
if objEvent.SourceName = "Double-Take" then
Wscript.Echo "Category: " & objEvent.Category & objEvent.ComputerName & objEvent.EventCode & objEvent.Message & objEvent.RecordNumber & objEvent.SourceName & objEvent.TimeWritten & objEvent.Type & objEvent.User
end if
Next
WshShell.RegDelete "HKLM\System\CurrentControlSet\Services\EventLog\ETORMFS\"
objFSO.DeleteFile("C:\windows\system32\config\ETORMFS.evt"), DeleteReadOnly