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
SmaDas18
Apr 08, 2024Copper Contributor
Get-WmiObject -Class Win32_UserAccount | Where-Object { $_.SID -eq "" }
Not efficient but it'll work...
Not efficient but it'll work...