PowerShell Logo Small

Test-ADServiceAccount



This is the built-in help made by Microsoft for the command 'Test-ADServiceAccount', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Tests a managed service account from a computer.

SYNTAX


Test-ADServiceAccount [-Identity] <ADServiceAccount> [-AuthType {Negotiate | Basic}] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Test-ADServiceAccount cmdlet tests a managed service account (MSA) from a local computer.


The Identity parameter specifies the Active Directory MSA account to test. You can identify a MSA by its distinguished name (DN), GUID, security identifier (SID), or
Security Accounts Manager (SAM) account name. You can also set the parameter to a MSA object variable, such as $<localMSA> or pass a MSA object through the pipeline to the
Identity parameter. For example, you can use the Get-ADServiceAccount to get a MSA object and then pass that object through the pipeline to the Test-ADServiceAccount cmdlet.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=291134
Get-ADServiceAccount
Install-ADServiceAccount
New-ADServiceAccount
Remove-ADServiceAccount
Set-ADServiceAccount
Uninstall-ADServiceAccount

REMARKS

<

Examples


-------------------------- EXAMPLE 1 --------------------------

PS C:\>Test-ADServiceAccount -Identity MSA1
True



This command tests that the specified service account, MSA1, is ready for use, which means thatit is able be authenticated and access the domain using its currently
configured credentials, from the local computer.




-------------------------- EXAMPLE 2 --------------------------

PS C:\>Test-ADServiceAccount -Identity MSA1
False
WARNING: Test failed for Managed Service Account MSA. If standalone Managed Service Account, the account is linked to another computer object in the Active Directory. If
group Managed Service Account, either this computer does not have permission to use the group MSA or this computer does not support all the Kerberos encryption types
required for the gMSA. See the MSA operational log for more information.



This command tests results returned if MsaInfoCannotInstall.




-------------------------- EXAMPLE 3 --------------------------

PS C:\>Test-ADServiceAccount -Identity MSA1
False
WARNING: The Managed Service Account MSA is not linked with any computer object in the directory.



This command tests results returns MsaInfoCanInstall.