orchestrator-powershell
orchestrator-powershell copied to clipboard
UiPath Orchestrator PowerShell cmdlet library
"Type":"DirectoryGroup" or "Type":"DirectoryUser" should be supported
something like this: ``` Get-UiPathAuthToken -.... -FirstLogin -ChangePassword ``` here is the api call used to changed the first login password: ``` $dataChange = @{ CurrentPassword = "890iop" NewPassword =...
``` $orchUpdateSecurity="$orchUrl/odata/Settings/UiPath.Server.Configuration.OData.UpdateBulk" $Value=@{"HasDigit"=$true "HasLowercase"=$true "HasSpecialCharacter"=$false "HasUppercase"=$false "Length"='8'} |ConvertTo-Json $dataUpdatePassword=@{"settings"= @(@{"Name"="PasswordComplexity" "Value"=$Value} @{"Name"="Auth.Password.DefaultExpirationDays" "Value"="0"} @{"Name"="Auth.Password.PreviousUseLimit" "Value"="1"} @{"Name"="Auth.Password.ShouldChangePasswordAfterFirstLogin" "Value"="false"} @{"Name"="Auth.UserLockOut.IsEnabled" "Value"="true"} @{"Name"="Auth.UserLockOut.DefaultAccountLockoutSeconds" "Value"="300"} @{"Name"="Auth.UserLockOut.MaxFailedAccessAttemptsBeforeLockout" "Value"="10"} @{"Name"="AttendedRobot.RunDisconnectedHours" "Value"="0"}) }|ConvertTo-Json $webresponse = Invoke-WebRequest -Uri...
There seems to be a problem with Get-UiPathAuthToken with windows credentials and tenant. If I have the same AD account in multiple tenants and use Get-UiPathAuthToken I get a response,...
Orchestrator Version 2018.4.1 & 2018.4.4, Powershell version 19.4.0.38 (tested on 19.1.0.18 too) Get-UiPathProcessSchedule -Id or Get-UiPathProcessSchedule -Name or Get-UiPathProcessSchedule don't return ExecutorRobots. API was tested on the orchestrator to confirm...
I'd like to be able to upload a license file to the host tenant and distribute the licenses across the different tenants via PowerShell scripts. Unfortunately, the Register-UiPathLicense PowerShell cmdlet...