I added a For Each loop. It still will display nothing. Please forgive ignorance here. I have actually never tapped into the WMI system before.
 Code:
Dim $strComputer, $objWMIService, $colProcessList, $objProcess
$strComputer = "."

$objWMIService = GetObject("winmgmts:\\" + $strComputer + "\root\cimv2")
$colProcessList = $objWMIService.ExecQuery("Select * from Win32_Process)")
If @error
  ? @Serror
  ?
EndIf

For Each $objProcess in $colProcessList
  ? $objProcess.Name 
Next



My Ultimate goal here is to check for certain processes. If they do not exist, i want to launch the process.