Hello All,
The group having no owners information in the FIM portal, Looking for a powershell script that will fetch all the group having no owner information in the FIM portal, I have tried and need inputs how to achieve that.
Below is the Query I am trying to build
# Load FIMAutomation module
if(@(Get-PSSnapin | ? { $_.Name -eq "FIMAutomation" } ).Count -eq 0)
{
Add-PSSnapin FIMAutomation;
}
$ImportState = [Microsoft.ResourceManagement.Automation.ObjectModel.ImportState]
$importObject = New-Object Microsoft.ResourceManagement.Automation.ObjectModel.ImportObject
$importObject.ObjectType = “Group”
$importObject.State
Kindly advice.
Regards,
Anirban Singha(Bangalore,India)