System.InvalidOperationException: Process performance counter is disabled
I'm getting this error when I try to query the GetProcesses() method.

This used to work fine. How did it break?
More importantly, how do I enable the performance counter?
CODE BELOW:=====================
Dim Processes() As Process
Dim i As Integer

Processes = Process.GetProcesses()
i = 1
Dim holdProcessesLine As String

Try
For Each p In Processes
holdProcessesLine = p.ProcessName.ToString.PadLeft(15) +
holdProcessesLine
If i Mod 3 = 0 Then
Console.WriteLine(holdProcessesLine)
holdProcessesLine = ""
End If
i = i + 1
Next


Catch exp As Exception

Console.WriteLine(exp.Message)
End Try