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
The RandomString function generates a random string based on the conditions specified. Characters allowed can be identified [here](https://docs.microsoft.com/windows/security/threat-protection/security-policy-settings/password-must-meet-complexity-requirements#reference).
@@ -805,11 +805,11 @@ The RandomString function generates a random string based on the conditions spec
805
805
806
806
**Example 1:** - Generate a random string without special character restrictions:
807
807
`RandomString(6,3,0,0,3)`
808
-
Generates a random string with 10 characters (3 numbers and 3 lower case characters).
808
+
Generates a random string with 6 characters. The string contains 3 numbers and 3 lower case characters (1a73qt).
809
809
810
810
**Example 2:** - Generate a random string with special character restrictions:
811
811
`RandomString(10,2,2,2,1,"?,")`
812
-
Generates a random string with 10 characters (2 numbers, 2 special characters, 2 capital letters, 1 lower case letter). Excludes "?" and "," from the random string generated.
812
+
Generates a random string with 10 characters. The string contains at least 2 numbers, 2 special characters, 2 capital letters, 1 lower case letter and excludes the characters "?" and "," (1@!2BaRg53).
0 commit comments