Forum Discussion

Cole_McDonald's avatar
Cole_McDonald
Icon for Professor rankProfessor
30 days ago
Solved

Deep Dive troubleshooting question

I'm having difficulties tracking down the source of a Service Account Lockout occuring in a fairly complex domain structure. I've found it necessary to set WMI creds at the top of the heirarchy, wi...
  • Dave_Lee's avatar
    27 days ago

    We struggled with something similar recently... In our case, we had a single WMI account across all hosts in a group and we knew it was correct, but we would see accounts logouts happening almost constantly.

    We thought the same as you - that there is a credential cached somewhere, or a credential set wrong on a host or a credential hard coded somewhere.  We didn't come across a way of troubleshooting it, one of my colleagues did find the root cause though.

    In our case, the issue was due to currency chars in the password - specifically the $ sign.   This was causing some of our PowerShell based property/data sources to do handle parts of the password as if we wanted it to do string interpolation.  Of course, the variable it was replacing portions of our password with didn't exist, so it had the effect of removing a portion of the password at runtime.  We were using double quotes rather than single quotes in a PowerShell script.

    Dave