Question

I have tried the following script and it fetched the members of the group.

$CompStat = Get-WmiObject win32_computersystem;
$Localhst = $CompStat.Name;
$Computer = [ADSI]('WinNT://'+$localhst+',computer');
$group = [ADSI]('WinNT://'+$Localhst+'/Remote Desktop Users,group');
$Members = @($group.psbase.Invoke("Members"));
$Members | ForEach-Object {$MemberNames += $_.GetType().InvokeMember("Name", 'GetProperty', $null, $_, $null);}

But the members are not getting displayed. How to print the members?

Was it helpful?

Solution

Just add a Write-Host $MemberNames at the end of your script

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top