Generating UPN

My history with PowerShell started with creation of new users in Active Directory. Not only is it time consuming to create users manually, but it also tends to create new support tasks because of a typo. Synchronization errors because “there’s an error” when synchronizing AD with AzureAD. My first script was plain and simple and… Read More Generating UPN

Generate new password in PowerShell

You can easily generate randomized passwords with PowerShell that meets the organizations security requirements and reuse the function through out your user management scripts. First you want to create a function that gets random characters.The script accepts two parameters, length and characters. Lenght specifies the number of characters to return and characters is the set… Read More Generate new password in PowerShell