Skip to content

Commit 6cff86b

Browse files
authored
Merge pull request #440 from turbosnute/powershell-strong-pw
Powershell strong pw
2 parents 66566e9 + d67a54c commit 6cff86b

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CONTRIBUTORS.md

+6
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,12 @@ Field Experience: System Administrator, Junior web developer, beta-tester, and d
471471
Coding Experience: 3 years of learning & coding experience in C++, Java, Javascript/NodeJS, PHP, Vue.js, Laravel Framework, GoLang and python. </br>
472472
Email: [email protected] </br>
473473

474+
Name: [Oyvind Nilsen](https://github.com/turbosnute) </br>
475+
Place: Trondheim, Norway </br>
476+
Field Experience: System Admin </br>
477+
Coding Experience: 10 years of Powershell scripting. Also some experience with Java, Js, PHP, Python and C#. </br>
478+
Email: [email protected] </br>
479+
474480
Name: [Jay](https://github.com/TacticalTechJay) </br>
475481
Place: Milky Way Galaxy </br>
476482
Coding Experience: Semi-noob in JS. </br>
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Generates a random strong 20 chars long password.
2+
# If you want to change the length of the password you can cange 20 inside the brackets before the -join to somethin else.
3+
([char[]]([char]33..[char]95) + ([char[]]([char]97..[char]126)) + 0..9 | Sort-Object {Get-Random})[0..20] -join ''

0 commit comments

Comments
 (0)