Hi,
I'm running the following command from the PSPKI 3.0 module on a Windows Server 2012 R2 Certficate Authority box
Get-CertificationAuthority "xxxxxxxx" | Get-FailedRequest | Remove-DatabaseRow
I receive the following error
WARNING: Non-request or non-CRL table row removal is not supported.
Comments: Thanks for report. The issue is with Remove-DatabaseRow. If you wish, you can fix it yourself. Change 45th line: ``` PowerShell if ($Req.Table -ne "Request" -or $Req.Table -ne "CRL") { ``` with ``` PowerShell if ($Req.Table -ne "Request" -and $Req.Table -ne "CRL") { ``` There is just a wrong operator. I'll fix this in the next official release.
I'm running the following command from the PSPKI 3.0 module on a Windows Server 2012 R2 Certficate Authority box
Get-CertificationAuthority "xxxxxxxx" | Get-FailedRequest | Remove-DatabaseRow
I receive the following error
WARNING: Non-request or non-CRL table row removal is not supported.
Comments: Thanks for report. The issue is with Remove-DatabaseRow. If you wish, you can fix it yourself. Change 45th line: ``` PowerShell if ($Req.Table -ne "Request" -or $Req.Table -ne "CRL") { ``` with ``` PowerShell if ($Req.Table -ne "Request" -and $Req.Table -ne "CRL") { ``` There is just a wrong operator. I'll fix this in the next official release.