If anyone could help me understand how to create variables from an array.
something like this.
$logArray = _getlogfiles() ; All eventlogfiles on the computer
_ArrayDelete($logArray, 0)
For $elements In $logArray
_DebugOut("INFO LOG FILE: " & $elements)
; Create a varible of $elements
Next
Is this above possible?
I would then check every variable with
$hEventLog = _EventLog__Open("", "Security")
$hEvent = _WinAPI_CreateEvent(0, False, False, "")
_EventLog__Notify($hEventLog, $hEvent)
something like this.
$logArray = _getlogfiles() ; All eventlogfiles on the computer
_ArrayDelete($logArray, 0)
For $elements In $logArray
_DebugOut("INFO LOG FILE: " & $elements)
; Create a varible of $elements
Next
Is this above possible?
I would then check every variable with
$hEventLog = _EventLog__Open("", "Security")
$hEvent = _WinAPI_CreateEvent(0, False, False, "")
_EventLog__Notify($hEventLog, $hEvent)