O servidor não conseguiu processar a solicitação devido a um erro interno
Encontrei a mensagem de erro abaixo ao executar os Get-ADPrincipalGroupMembership
comandos da conta Powershell para determinadas contas de usuário no AD.
Pesquisei na Internet minuciosamente e não consegui encontrar muito, então continuei cavando, ativei o detalhado, o rastreamento, o teste, a comparação e assim por diante.
Finalmente encontrei a causa e uma solução (no meu caso), então queria postar isso aqui como uma pergunta e uma resposta, já que não consegui encontrar muito em outro lugar durante meu processo de solução de problemas.
Isso pode ajudar alguém a obter uma solução rápida e evitar algumas dores de cabeça se estiver trabalhando em algo urgente ou crítico.
Mensagem de erro completa do Powershell
PS C:\Users\User> Get-ADPrincipalGroupMembership <AccountName>
Get-ADPrincipalGroupMembership : The server was unable to process the request due to an
internal error. For more information about the error, either turn on
IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the
<serviceDebug> configuration behavior) on the server in order to send the exception
information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0
SDK documentation and inspect the server trace logs.
At line:1 char:1
+ Get-ADPrincipalGroupMembership <AccountName>
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (<AccountName>:ADPrincipal) [Get-ADPrincipalGr
oupMembership], ADException
+ FullyQualifiedErrorId : The server was unable to process the request due to an inter
nal error. For more information about the error, either turn on IncludeExceptionDetai
lInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configurati
on behavior) on the server in order to send the exception information back to the clie
nt, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and i
nspect the server trace logs.,Microsoft.ActiveDirectory.Management.Commands.GetADPrinc
ipalGroupMembership
AS CAUSAS (no meu caso)
/
caractere de barra [] no nome da OU.Group Name
que também continha um/
caractere de barra [ ] .A SOLUÇÃO (no meu caso)
Eu removi todos os caracteres de barra da OU e nomes de grupo e tudo funcionou como esperado depois.