Mam ten kod:
$cmdPath = "$PSScriptRoot\letsencrypt\letsencrypt.exe"
$cmdArgList = @(
"-R"
)
Start-Process -FilePath $cmdPath -ArgumentList $cmdArgList -Wait -Verb runAs -PassThru -RedirectStandardOutput stdout.txt
Zawsze pojawia się błąd stwierdzający:
Start-Process : Parameter set cannot be resolved using the specified named parameters.
At line:7 char:1
+ Start-Process -FilePath $cmdPath -ArgumentList $cmdArgList -Wait -Ver ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Start-Process], ParameterBindingException
+ FullyQualifiedErrorId : AmbiguousParameterSet,Microsoft.PowerShell.Commands.StartProcessCommand
Nie mam pojęcia, co robię źle tutaj ... Czy ktoś może mi tutaj pomóc?
powershell
Kazoooka
źródło
źródło
Show-Command -Name Start-Process
), znajdziesz jąRedirectStandardOutput
iVerb
należysz do różnych zestawów parametrów.