PoshTip #28 – Generate Random Passwords

10 juin 2016 Nicolas 0

PoshTip #28 – Generate Random Passwords First, import the System.Web assembly: Add-Type -AssemblyName System.Web and use the GeneratePassword function: [System.Web.Security.Membership]::GeneratePassword(10,5) GeneratePassword(x,y) x=Password length y=Number of Read More

1 2 3 4 5 6