Forum Discussion
Sidra_Raza
Jan 25, 2024Copper 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
Sort By
- SmaDas18Copper ContributorGet-WmiObject -Class Win32_UserAccount | Where-Object { $_.SID -eq "" }
Not efficient but it'll work...