I have 4 Nodes associated with a specific Cred I need to find out what 4 they are before we change the password so we don't break anything.
Assuming you're talking about WMI credentials, you can get this information by:
1. Go to the credential table and get the credential ID for the one you're concerned with
2. Add the credential ID and run this query to get the impacted node IDs: select * from NodeSettingsWhere SettingName = 'WMICredential' and SettingValue = (credential ID)
Thank you!!!