You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updates AD passwords for UiPath Orchestrator robot credentials that are close to password expiration
5
+
.DESCRIPTION
6
+
You must run this script as an user that has the privilege to reset the robot passwords in the AD. This privilege can be delegated to you by a domain administrator.
7
+
You should first import the UiPath.PowerShell module and authenticate yourself with your Orchestrator using Get-UiPathAuthToken before running this script.
8
+
.PARAMETERDomainName
9
+
The domain to sync users with. It does not necessarily has to be your current user or machine domain, but there must be some trust relationship so your Windows session can discover and interogate this domain AD.
10
+
.PARAMETERDays
11
+
Update the passwords in AD for the robot credentials that expire sooner than this number of days. Default is 1 Day.
12
+
.PARAMETERPasswordLength
13
+
The total number of characters for the generated password(s). Default is 16 characters.
14
+
.PARAMETERNonAlphaCount
15
+
Number of non-alphanumeric characters in the generated password(s). Default is 3 characters.
16
+
.EXAMPLE
17
+
Update-UiPathADRobotPasswords MyDomain
18
+
Updates the passwords for all robots that use credentials from the domain MyDomain
19
+
.EXAMPLE
20
+
Update-UiPathADRobotPasswords MyDomain -Days 7
21
+
Updates the passwords for all robots that use credentials that will expire sooner than 7 days
0 commit comments