Windows error 0x800704DC, -2147023652

Detailed Error Information

NOT_AUTHENTICATED[1]

MessageThe operation being requested was not performed because the user has not been authenticated.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code1244 (0x04dc)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x000004dc.

Questions

1vote
1answer

Remotely renewing a certificate using CertEnroll

I am trying to renew a certificate using CertEnroll and CertLib COM libraries in PowerShell. Here is my code: [CmdletBinding()] param( [parameter (mandatory=$true)] [string]$ServerName ) $credential = Get-Credential Invoke-Command -ComputerName $ServerName -Credential $credential -ScriptBlock{ $location=[System.Security.Cryptography.X509Certificates.StoreLocation]::CurrentUser $store =New-Object -TypeName System.Security.Cryptography.X509Certificates.X509Store -ArgumentList $location $store.Open(1) $cert = $store.Certificates.Find([System.Security.Cryptography.X509Certificates.X509FindType]::FindByIssuerName,"<CA-Name>",$false)[0] #Write-Output $cert.IssuerName $store.Close() $request = [...] read more
powershell
x509certificate
pki
certenroll
0votes
0answers

CertUtil: -dsPublish command FAILED: 0x800704dc (WIN32: 1244 ERROR_NOT_AUTHENTICATED)

i am trying to update the certification revocation list on a root server and want to update it on an issuing CA server. But i am facing a strange problem as below - 1. when i am trying to publish the .crl on the issuing CA using the following command [...] read more
powershell
pki
ca
certenroll

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0