Skip to content

This is a fork of a UiPath Teams package, that was built for windows Legacy. I've updated the need packages to make this work on Windows (Modern) UiPath.

Notifications You must be signed in to change notification settings

nikhileshjoshi/GenerateRandomPassword.Activities

 
 

Repository files navigation

GenerateRandomPassword.Activities

Summary

Generates a random password with various criteria: min&max length, required number of lowercase&uppercase letters, required number of digits and required number of special characters. Now updated for UiPath Windows.

Benefits

Facilitates password maintenance processes. Some Robots have to generate their own new passwords at expiration time.

Package specifications

Generates a random password with various criteria: min&max length, required number of lowercase&uppercase letters, required number of digits and required number of special characters. For random number generation it utilizes System.Security.Cryptography.RNGCryptoServiceProvider. All length requirements have to be below 1000 chars.

InArguments

  • int Minimum password length
  • int Maximum password length
  • int Required digits
  • int Required uppercase letters
  • int Required lowercase letters
  • int Required special characters
  • string Allowed special characters - If not provided, will default to:" !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~")]

OutArguments

  • string Password { get; set; }

About

This is a fork of a UiPath Teams package, that was built for windows Legacy. I've updated the need packages to make this work on Windows (Modern) UiPath.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%