I am trying to setup Orchestrator 19.4.3 in HA on Windows 2012 R2 with MS Sql 2016 Developer edition.
Now while executing Configure-PlatformNode.ps1 on primary with the following attributes, it throws error.
PS C:\Program Files (x86)\UiPath\Orchestrator\Tools> .\Configure-PlatformNode.ps1 -mode ConfigurePrimary -websiteName Ui
Path Orchestrator -nugetPackagesPath \CVMVPD331\NuGetPackages -redisServer redis.domain.local -redisPassword 1234
C:\Program Files (x86)\UiPath\Orchestrator\Tools\Configure-PlatformNode.ps1 : A positional parameter cannot be found
that accepts argument ‘Orchestrator’.
At line:1 char:1
- .\Configure-PlatformNode.ps1 -mode ConfigurePrimary -websiteName UiPath Orchestr …
-
+ CategoryInfo : InvalidArgument: (:) [Configure-PlatformNode.ps1], ParameterBindingException + FullyQualifiedErrorId : PositionalParameterNotFound,Configure-PlatformNode.ps1
If I remove the space between UiPath and Orchestrator for website parameter just so that the script does not assume that Orchestrator is another parameter, I get error on NuGetPackagesPath.
PS C:\Program Files (x86)\UiPath\Orchestrator\Tools> .\Configure-PlatformNode.ps1 -mode ConfigurePrimary -websiteName Ui
PathOrchestrator -nugetPackagesPath \CVMVPD331\NuGetPackages -redisServer redis.domain.local -redisPassword 1234
C:\Program Files (x86)\UiPath\Orchestrator\Tools\Configure-PlatformNode.ps1 : A parameter cannot be found that matches
parameter name ‘nugetPackagesPath’.
At line:1 char:85
- … thOrchestrator -nugetPackagesPath \CVMVPD331\NuGetPackages -redisServer redis.d …
-
~~~~~~~~~~~~~~~~~~
- CategoryInfo : InvalidArgument: ( [Configure-PlatformNode.ps1], ParameterBindingException
- FullyQualifiedErrorId : NamedParameterNotFound,Configure-PlatformNode.ps1