• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to secondary sidebar
OpenTechTips

OpenTechTips

Practical IT Guides, Expert Tips, and Real-World Solutions

MENUMENU
  • HOME
  • ALL TOPICS
    • Exchange
    • InfoSec
    • Linux
    • Networking
    • Scripting
      • PowerShell
    • SSL
    • Tools
    • Virtualization
    • Web
    • Windows
  • ABOUT
  • SUBSCRIBE
Home ยป Easy Password Generator in PowerShell

Easy Password Generator in PowerShell

October 6, 2022 - by Zsolt Agoston - last edited on October 23, 2022

This one-liner picks a random character from a pool of upper and lowercase letters, numbers and special characters twenty times and join them together.

# 20 char long randomized password generator
-join ((48..57) + (65..90) + (97..122) + 33 + (36..38) | Get-Random -Count 20 | ForEach-Object {[char]$_})
Easy Password Generator in PowerShell

The Script - For Longer Passwords and Multiple at a Time

The following script allows you to specify the length of the generated strings, also the number of strings generated in case you needed multiple lines of password material.

Function GeneratePasswords {
	Param (
		[int]$Length = 20,
		[int]$Count = 1
	)

	$CharPool = @()
	
	# Add the ASCII codes of numbers to the character pool
	$CharPool += (48..57)
	
	# Add the ASCII codes of uppercase letters to the character pool
	$CharPool += (65..90)
	
	# Add the ASCII codes of lowercase letters to the character pool
	$CharPool += (97..122)
	
	# Add the ASCII codes of characters: !$%& to the character pool
	$CharPool += 33
	$CharPool += (36..38)
	
	
	For ($i = 0; $i -lt $Count; $i++) {
		# Generate password
		-join ($CharPool | Get-Random -Count $Length | ForEach-Object {[char]$_})
	}
}

Example

# Single password
GeneratePasswords -Length 50

# Generate a 50 character long single password
GeneratePasswords -Length 50

# Generate 10 of 50 character long single passwords
GeneratePasswords -Length 50 -Count 10
Easy Password Generator in PowerShell

Reader Interactions

Comments Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Tools

Secondary Sidebar

CONTENTS

  • The Script – For Longer Passwords and Multiple at a Time
  • Example

  • Terms of Use
  • Disclaimer
  • Privacy Policy
Manage your privacy
We use technologies like cookies to store and/or access device information. We do this to improve browsing experience and to show (non-) personalized ads. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
  • Manage options
  • Manage services
  • Manage {vendor_count} vendors
  • Read more about these purposes
Manage options
  • {title}
  • {title}
  • {title}
Manage your privacy
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
  • Manage options
  • Manage services
  • Manage {vendor_count} vendors
  • Read more about these purposes
Manage options
  • {title}
  • {title}
  • {title}