-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How does Get-IssuedRequest -Filter actually work? #222
Comments
Did you check cmdlet built-in help?
Also, |
Interesting. Thank you. I didn't realize it might not support "-ne" or "-notcontains". I ended doing a "-ge" with one of the values than a standard filter against the collected array to remove the values I didn't want. Thanks again. |
This limitation came from underlying DB query engine. Look for |
I am using Get-IssuedRequest with a Filter switch and it keeps saying the format is invalid in a specific way.
Get-IssuedRequest -Filter "CommonName -notcontains ABCCompany"
Reply:
I have only been able to use "NotAfter -gt" and everything else as a filter has thrown an error.
The examples show:
Get-CertificationAuthority -Name MyCA | Get-IssuedRequest -Filter "CertificateTemplate -eq WebServer", "CommonName -eq www.company.com"
which is what I am doing with just the Commoname property and -notcontains. Also I did try -ne which gave me the same error.
The text was updated successfully, but these errors were encountered: