fix mandatory params

This commit is contained in:
OCram85 2019-04-05 12:54:39 +02:00
parent b760b65f63
commit 34ac71f7ce

View File

@ -42,8 +42,8 @@ function Use-CSCertificate {
[Parameter(Mandatory = $true, ParameterSetName = "Shared")] [Parameter(Mandatory = $true, ParameterSetName = "Shared")]
[switch]$Shared, [switch]$Shared,
[Parameter(Mandatory = $true, ParameterSetName = "Private")] [Parameter(Mandatory = $false, ParameterSetName = "Private")]
[Parameter(Mandatory = $true, ParameterSetName = "Shared")] [Parameter(Mandatory = $false, ParameterSetName = "Shared")]
[Switch]$UseCertStore [Switch]$UseCertStore
) )
begin { } begin { }