PowerShell Logo Small

Import-TpmOwnerAuth



This is the built-in help made by Microsoft for the command 'Import-TpmOwnerAuth', 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

Imports a TPM owner authorization value to the registry.

SYNTAX


Import-TpmOwnerAuth -File <String> [<CommonParameters>]
Import-TpmOwnerAuth [-OwnerAuthorization] <String> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Import-TpmOwnerAuth cmdlet imports a valid Trusted Platform Module (TPM) owner authorization value to the registry.


For more information on TPM, see the Trusted Platform Module Technology Overview in the Technet library at http://technet.microsoft.com/en-us/library/jj131725.aspx.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=306670
ConvertTo-TpmOwnerAuth
Set-TpmOwnerAuth

REMARKS

<

Examples


Example 1: Import an owner authorization value

PS C:\> Import-TpmOwnerAuth -OwnerAuthorization "Qn2sdCFQmvjf+tBtSWH4GT87sQs="


TpmReady : False
TpmPresent : True
ManagedAuthLevel : Full
OwnerAuth : Qn2sdCFQmvjf+tBtSWH4GT87sQs=
OwnerClearDisabled : True
AutoProvisioning : DisabledForNextBoot
LockedOut : False
SelfTest : {191, 191, 245, 191...}



This command imports the specified owner authorization value to the registry.




Example 2: Import an owner authorization value from a file

PS C:\> Import-TpmOwnerAuth -File "OwnAuthFile.tpm"


TpmReady : False
TpmPresent : True
ManagedAuthLevel : Full
OwnerAuth : OwnerClearDisabled : True
AutoProvisioning : DisabledForNextBoot
LockedOut : False
SelfTest : {191, 191, 245, 191...}



This command imports the owner authorization value in the specified file to the registry.