Forum Discussion
Sidra_Raza
Jan 25, 2024Brass Contributor
SID username using Powershell script in sentinel
Hello everyone,
Is there any way to resolve the SID username that came in sentinel alert using Powershell script?
Thanks
1 Reply
- SmaDas18Copper ContributorGet-WmiObject -Class Win32_UserAccount | Where-Object { $_.SID -eq "" }
Not efficient but it'll work...