Generating Passwords
Description:
This script is used to generate random passwords.
To Resolve:
-
This is the cmdline version that I like to use with my CustomMenuGUI script:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
[Cmdletbinding()] Param ( [Parameter(Position = 0, Mandatory = $True)] [Int]$Length = 12, [Switch]$Nolower, [Switch]$Noupper, [Switch]$Nonumber, [Switch]$Nosymbol, [String]$Logfile = "$PSScriptRoot\..\Logs\Invoke-Password.Log" ) Try { $Possible_Chars = ''; If (!$Nolower) { $Possible_Chars += 'abcdefghijklmnopqrstuvwxyz' } If (!$Noupper) { $Possible_Chars += 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' } If (!$Nonumber) { $Possible_Chars += '1234567890' } If (!$Nosymbol) { $Possible_Chars += '!@#$%^&*()<>' } If ($Possible_Chars.Length -Le 0) { Write-Warning ('Unable To Generate A Password Without Any Valid Characters.') Return $Null; } If ($Possible_Chars.Length -Gt 65535) { Write-Output ( 'Charset "{0}" With Length Of {1} Detected - ' + 'This Function Will Only Select From The First 65535 Possibilities.' -F $Possible_Chars, $Possible_Chars.Length ) } $Rng = [System.Security.Cryptography.Randomnumbergenerator]::Create(); $Randbyte = New-Object Byte[] 2; [String]$Password = ''; For ($I = 0; $I -Lt $Length; $I++) { $Rng.Getbytes($Randbyte); $Roll = [System.Bitconverter]::Touint16($Randbyte, 0) % $Possible_Chars.Length; $Password += $Possible_Chars[$Roll] } Log $Password $Password | clip } Catch { Write-Error -Message $($_.Exception.Message) }
Or the GUI version (copied from the Agreeable Cow’s site):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
#Set Proxy Server Settings (If Required) Function Setwebproxy() { If (Test-Connection Proxy1.Mydomain.Com -Count 1 -Quiet) { $Global:Psdefaultparametervalues = @{ 'Invoke-Restmethod:Proxy' = 'http://proxy1.mydomain.com:8080' 'Invoke-Webrequest:Proxy' = 'http://proxy1.mydomain.com:8080' '*:Proxyusedefaultcredentials' = $True } } } #Show A Message Box Function Show-Messagebox { Param([Parameter(Position = 1, Mandatory = $True)][String]$Message, [String]$Title = "", [Validateset('Ok', 'Okcancel', 'Abortretryignore', 'Yesnocancel', 'Yesno', 'Retrycancel')][String]$Type = 'Ok', [Validateset('None', 'Stop', 'Question', 'Warning', 'Information')][String]$Icon = 'None') Add-Type -Assemblyname System.Windows.Forms [System.Windows.Forms.Messagebox]::Show($Message, $Title, $Type, $Icon) } #Generate Password Or Phrase Function Generatepassword { [String] $Password = "" $Txtresults.Text = "<Generating Phrase...>" #Generate Passwords If ($Rdchar.Checked -Eq $True) { #Define Default Variables [Bool] $Includelower = $False [Bool] $Includeupper = $False [Bool] $Includenumbers = $False [Bool] $Includespecial = $False #Update Complexity Based On Form $Length = $Numericupdown1.Value If ($Cblower.Checked -Eq $True) { $Includelower = $True } If ($Cbupper.Checked -Eq $True) { $Includeupper = $True } If ($Cbnumbers.Checked -Eq $True) { $Includenumbers = $True } If ($Cbspecial.Checked -Eq $True) { $Includespecial = $True } #Load Ascii Characters $Lowercase = [Char[]](97..122) $Upercase = [Char[]](65..90) $Numbers = [Char[]](48..57) $Special = [Char[]](33..47) + [Char[]](58..64) + [Char[]](91..96) + [Char[]](123..126) #Build Password Set If ($Includelower -Eq $True) { $Passwordset += $Lowercase } If ($Includeupper -Eq $True) { $Passwordset += $Upercase } If ($Includenumbers -Eq $True) { $Passwordset += $Numbers } If ($Includespecial -Eq $True) { $Passwordset += $Special } #Generate Random Password $Randomobj = New-Object System.Random 1..$Length | Foreach {$Password += ($Passwordset | Get-Random)} } #Generate Phrases Elseif ($Rdword.Checked -Eq $True) { #Define Default Variables $Words = @() $Uncommonwords = @() $Length = $Numericupdown2.Value $Subreddit = $Txtsource.Text $Scriptpath = Split-Path -Parent $Pscommandpath #Launch Web Request To Collect 25x Post Titles From Reddit Try { Setwebproxy # <-- Run This Function To Connect Via A Proxy Server $Uri = "https://www.reddit.com/$Subreddit" #If Subreddit Is 'Random', Select The Redirected .Json Page If ($Uri -Eq "https://www.reddit.com/r/random") { $Request = Invoke-Webrequest -Uri $Uri -Maximumredirection 0 -Erroraction Ignore If ($Request.Statusdescription -Eq 'Found') { $Uri = $Request.Headers.Location } $Uri = $Uri.Substring(0, $Uri.Length - 1) $Redirect = $Uri + ".Json" Write-Host "Word Source: $Uri" $Uri = Invoke-Webrequest -Uri $Redirect } #Otherwise, Just Select The Original .Json Page Else { $Original = $Uri + ".Json" Write-Host "Word Source: $Uri" $Uri = Invoke-Webrequest -Uri $Original } $Obj = Convertfrom-Json ($Uri.Content) $Data = $Obj.Data.Children.Data | Select Title } Catch { $Txtresults.Text = "Failed Connection Or Unknown Url. Please Try Again" Break; } #Break Down Titles Into Words $Titles = $Data.Title $Words = $Titles.Split(' ') #Filter Out Common Redit Text, Special Characters And Numbers $Reddittext = @("r/", "u/") $Punctuation = @('"', "~", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", "-", "_", "=", ` "+", "[", "]", "{", "}", "\", "|", ";", ":", "'", ",", "<", ".", ">", "/", "?") $Numbers = @("0", "1", "2", "3", "4", "5", "6", "7", "8", "9") $Characters = $Reddittext + $Punctuation + $Numbers Foreach ($Character In $Characters) { $Words = $Words.Replace($Character, "") } #Filter Out Small Words And Duplicates $Words = $Words | Where-Object {$_.Length -Ge 4} $Words = $Words | Select -Uniq #Filter Out Common Words $Excludedwordfile = "$Scriptpath\Excludedcommonwords.Txt" If ((Test-Path $Excludedwordfile)) { $Excludedwords = Get-Content $Excludedwordfile Foreach ($Word In $Words) { If ($Excludedwords -Notcontains $Word) { $Uncommonwords += $Word } } #Check For A Decent Sized Word Pool And Create Phrase Out Of Uncommon Words Only $Count = $Uncommonwords.Count If ($Count -Lt 50) { Write-Warning "The Generated Word List Was Not Very Large ($Count), Which May Result In Limited Word Selection. Suggest You Try Another Subreddit." } 1..$Length | Foreach {$Password += ($Uncommonwords | Get-Random)} } Else { #Warn About Excludedwordlist File Missing, Check For A Decent Sized Word Pool And Create Phrase Out Of All Available Words Write-Warning "The Generated Phrase May Contain Very Common Words. Please Add The 'Excluded Common Words' File $Excludedwordfile And Try Again." $Count = $Words.Count If ($Count -Lt 50) { Write-Warning "The Generated Word List Was Not Very Large ($Count), Which May Result In Limited Word Selection. Suggest You Try Another Subreddit." } 1..$Length | Foreach {$Password += ($Words | Get-Random)} } #Remove All Remaining Non A-Z Or A-Z Characters And Test Length Of Final Phrase $Password = [System.Text.Regularexpressions.Regex]::Replace($Password, "[^A-Za-Z]", ""); If ($Password.Length -Lt 16) { Write-Warning "Phrase Is Not Very Long. Suggest You Try Again." } } #Copy To Clipboard If ($Cbclipboard.Checked -Eq $True) { $Password | Clip } #Update Text Display On Form If ($Cbmask.Checked -Eq $True) { 1..$Length | Foreach {$Stars += "*"} $Txtresults.Text = $Stars } Else { $Txtresults.Text = $Password } #Export To Text File If ($Cbfile.Checked -Eq $True) { If ($Cbfile.Text -Eq "Export To File") { If ($Savefiledialog1.Showdialog() -Eq 'Ok') { $Password | Out-File $Savefiledialog1.Filename } } Else { $Password | Out-File $Savefiledialog1.Filename -Append } $Cbfile.Text = "Appending..." } } #------------------------ # Form # #------------------------ Function Generateform { #Region Import The Assemblies [Reflection.Assembly]::Loadwithpartialname("System.Drawing") | Out-Null [Reflection.Assembly]::Loadwithpartialname("System.Windows.Forms") | Out-Null #Region Generated Form Objects $Form1 = New-Object System.Windows.Forms.Form $Label1 = New-Object System.Windows.Forms.Label $Groupbox2 = New-Object System.Windows.Forms.Groupbox $Cbfile = New-Object System.Windows.Forms.Checkbox $Cbmask = New-Object System.Windows.Forms.Checkbox $Cbclipboard = New-Object System.Windows.Forms.Checkbox $Groupbox1 = New-Object System.Windows.Forms.Groupbox $Btnhelp = New-Object System.Windows.Forms.Button $Txtsource = New-Object System.Windows.Forms.Textbox $Label2 = New-Object System.Windows.Forms.Label $Numericupdown2 = New-Object System.Windows.Forms.Numericupdown $Rdword = New-Object System.Windows.Forms.Radiobutton $Rdchar = New-Object System.Windows.Forms.Radiobutton $Numericupdown1 = New-Object System.Windows.Forms.Numericupdown $Cblower = New-Object System.Windows.Forms.Checkbox $Cbupper = New-Object System.Windows.Forms.Checkbox $Cbnumbers = New-Object System.Windows.Forms.Checkbox $Cbspecial = New-Object System.Windows.Forms.Checkbox $Txtresults = New-Object System.Windows.Forms.Textbox $Btncancel = New-Object System.Windows.Forms.Button $Btngenerate = New-Object System.Windows.Forms.Button $Savefiledialog1 = New-Object System.Windows.Forms.Savefiledialog $Initialformwindowstate = New-Object System.Windows.Forms.Formwindowstate #Event Script Blocks $Handler_Btngenerate_Click = { Generatepassword } $Handler_Btncancel_Click = { $Form1.Close() } $Onloadform_Statecorrection = { $Form1.Windowstate = $Initialformwindowstate [Int] $Runcount = 0 Generatepassword } $Btnhelp_Onclick = { Show-Messagebox 'An Effective Word Array Is Dynamic And Random. These Words Are Randomly Sourced In Real Time, From Titles Of Posts On https://www.reddit.com' ` -Type Ok -Icon Information } #---------------------------------------------- #Region Generated Form Code $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 346 $System_Drawing_Size.Width = 605 $Form1.Clientsize = $System_Drawing_Size $Form1.Databindings.Defaultdatasourceupdatemode = 0 $Form1.Name = "Form1" $Form1.Startposition = 1 $Form1.Text = "Password Generator" #Logo Label $Label1.Databindings.Defaultdatasourceupdatemode = 0 $Label1.Font = New-Object System.Drawing.Font("Courier New", 6.75, 1, 3, 0) $Label1.Forecolor = [System.Drawing.Color]::Fromargb(255, 0, 0, 0) $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 470 $System_Drawing_Point.Y = 200 $Label1.Location = $System_Drawing_Point $Label1.Name = "Label1" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 80 $System_Drawing_Size.Width = 110 $Label1.Size = $System_Drawing_Size $Label1.Tabindex = 13 <# $Label1.Text = " (__) (Oo) Ok /------\/ / / | || * /\---/\ ^^ ^^ V1.3" #> $Form1.Controls.Add($Label1) #Options Group Box $Groupbox2.Databindings.Defaultdatasourceupdatemode = 0 $Groupbox2.Font = New-Object System.Drawing.Font("Microsoft Sans Serif", 9.75, 0, 3, 1) $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 12 $System_Drawing_Point.Y = 207 $Groupbox2.Location = $System_Drawing_Point $Groupbox2.Name = "Groupbox2" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 60 $System_Drawing_Size.Width = 407 $Groupbox2.Size = $System_Drawing_Size $Groupbox2.Tabindex = 12 $Groupbox2.Tabstop = $False $Groupbox2.Text = "Options" $Form1.Controls.Add($Groupbox2) # Export To File Checkbox $Cbfile.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 281 $System_Drawing_Point.Y = 22 $Cbfile.Location = $System_Drawing_Point $Cbfile.Name = "Cbfile" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 24 $System_Drawing_Size.Width = 104 $Cbfile.Size = $System_Drawing_Size $Cbfile.Tabindex = 2 $Cbfile.Text = "Export To File" $Cbfile.Usevisualstylebackcolor = $True $Groupbox2.Controls.Add($Cbfile) # Mask Checkbox $Cbmask.Databindings.Defaultdatasourceupdatemode = 0 $Cbmask.Font = New-Object System.Drawing.Font("Microsoft Sans Serif", 9.75, 0, 3, 1) $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 199 $System_Drawing_Point.Y = 22 $Cbmask.Location = $System_Drawing_Point $Cbmask.Name = "Cbmask" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 24 $System_Drawing_Size.Width = 104 $Cbmask.Size = $System_Drawing_Size $Cbmask.Tabindex = 1 $Cbmask.Text = "Mask" $Cbmask.Usevisualstylebackcolor = $True $Groupbox2.Controls.Add($Cbmask) # Copy To Clipboard Checkbox $Cbclipboard.Checked = $True $Cbclipboard.Checkstate = 1 $Cbclipboard.Databindings.Defaultdatasourceupdatemode = 0 $Cbclipboard.Font = New-Object System.Drawing.Font("Microsoft Sans Serif", 9.75, 0, 3, 1) $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 40 $System_Drawing_Point.Y = 22 $Cbclipboard.Location = $System_Drawing_Point $Cbclipboard.Name = "Cbclipboard" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 24 $System_Drawing_Size.Width = 137 $Cbclipboard.Size = $System_Drawing_Size $Cbclipboard.Tabindex = 0 $Cbclipboard.Text = "Copy To Clipboard" $Cbclipboard.Usevisualstylebackcolor = $True $Groupbox2.Controls.Add($Cbclipboard) #Random Group Box $Groupbox1.Databindings.Defaultdatasourceupdatemode = 0 $Groupbox1.Font = New-Object System.Drawing.Font("Microsoft Sans Serif", 9.75, 0, 3, 1) $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 12 $System_Drawing_Point.Y = 55 $Groupbox1.Location = $System_Drawing_Point $Groupbox1.Name = "Groupbox1" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 129 $System_Drawing_Size.Width = 582 $Groupbox1.Size = $System_Drawing_Size $Groupbox1.Tabindex = 11 $Groupbox1.Tabstop = $False $Groupbox1.Text = "Random" $Form1.Controls.Add($Groupbox1) # Help Button $Btnhelp.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 545 $System_Drawing_Point.Y = 83 $Btnhelp.Location = $System_Drawing_Point $Btnhelp.Name = "Btnhelp" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 23 $System_Drawing_Size.Width = 20 $Btnhelp.Size = $System_Drawing_Size $Btnhelp.Tabindex = 13 $Btnhelp.Text = "?" $Btnhelp.Usevisualstylebackcolor = $True $Btnhelp.Add_Click($Btnhelp_Onclick) $Groupbox1.Controls.Add($Btnhelp) #Url Source Text Box $Txtsource.Backcolor = [System.Drawing.Color]::Fromargb(255, 255, 255, 255) $Txtsource.Databindings.Defaultdatasourceupdatemode = 0 $Txtsource.Font = New-Object System.Drawing.Font("Microsoft Sans Serif", 9.75, 0, 3, 0) $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 402 $System_Drawing_Point.Y = 83 $Txtsource.Location = $System_Drawing_Point $Txtsource.Name = "Txtsource" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 22 $System_Drawing_Size.Width = 131 $Txtsource.Size = $System_Drawing_Size $Txtsource.Tabindex = 12 $Txtsource.Text = "R/Random" $Groupbox1.Controls.Add($Txtsource) #Words Label $Label2.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 215 $System_Drawing_Point.Y = 83 $Label2.Location = $System_Drawing_Point $Label2.Name = "Label2" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 23 $System_Drawing_Size.Width = 192 $Label2.Size = $System_Drawing_Size $Label2.Tabindex = 11 $Label2.Text = "Source: https://www.reddit.com/" $Label2.Textalign = 16 $Label2.Add_Click($Handler_Label2_Click) $Groupbox1.Controls.Add($Label2) #Words Numeric Up/Down $Numericupdown2.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 140 $System_Drawing_Point.Y = 83 $Numericupdown2.Location = $System_Drawing_Point $Numericupdown2.Maximum = 30 $Numericupdown2.Minimum = 3 $Numericupdown2.Name = "Numericupdown2" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 22 $System_Drawing_Size.Width = 47 $Numericupdown2.Size = $System_Drawing_Size $Numericupdown2.Tabindex = 10 $Numericupdown2.Textalign = 2 $Numericupdown2.Value = 4 $Groupbox1.Controls.Add($Numericupdown2) # Words Radio Button $Rdword.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 20 $System_Drawing_Point.Y = 82 $Rdword.Location = $System_Drawing_Point $Rdword.Name = "Rdword" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 24 $System_Drawing_Size.Width = 104 $Rdword.Size = $System_Drawing_Size $Rdword.Tabindex = 9 $Rdword.Tabstop = $True $Rdword.Text = "Words" $Rdword.Usevisualstylebackcolor = $True $Groupbox1.Controls.Add($Rdword) #Characters Radio Button $Rdchar.Checked = $True $Rdchar.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 20 $System_Drawing_Point.Y = 30 $Rdchar.Location = $System_Drawing_Point $Rdchar.Name = "Rdchar" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 24 $System_Drawing_Size.Width = 104 $Rdchar.Size = $System_Drawing_Size $Rdchar.Tabindex = 8 $Rdchar.Tabstop = $True $Rdchar.Text = "Characters" $Rdchar.Usevisualstylebackcolor = $True $Groupbox1.Controls.Add($Rdchar) #Characters Numeric Up/Down $Numericupdown1.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 140 $System_Drawing_Point.Y = 31 $Numericupdown1.Location = $System_Drawing_Point $Numericupdown1.Maximum = 127 $Numericupdown1.Minimum = 6 $Numericupdown1.Name = "Numericupdown1" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 22 $System_Drawing_Size.Width = 47 $Numericupdown1.Size = $System_Drawing_Size $Numericupdown1.Tabindex = 5 $Numericupdown1.Textalign = 2 $Numericupdown1.Value = 12 $Groupbox1.Controls.Add($Numericupdown1) #Lowercase Letters Checkbox $Cblower.Checked = $True $Cblower.Checkstate = 1 $Cblower.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 235 $System_Drawing_Point.Y = 30 $Cblower.Location = $System_Drawing_Point $Cblower.Name = "Cblower" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 24 $System_Drawing_Size.Width = 52 $Cblower.Size = $System_Drawing_Size $Cblower.Tabindex = 3 $Cblower.Text = "Abc" $Cblower.Usevisualstylebackcolor = $True $Groupbox1.Controls.Add($Cblower) #Uppercase Letters Checkbox $Cbupper.Checked = $True $Cbupper.Checkstate = 1 $Cbupper.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 328 $System_Drawing_Point.Y = 30 $Cbupper.Location = $System_Drawing_Point $Cbupper.Name = "Cbupper" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 24 $System_Drawing_Size.Width = 57 $Cbupper.Size = $System_Drawing_Size $Cbupper.Tabindex = 4 $Cbupper.Text = "Abc" $Cbupper.Usevisualstylebackcolor = $True $Groupbox1.Controls.Add($Cbupper) #Numbers Checkbox $Cbnumbers.Checked = $True $Cbnumbers.Checkstate = 1 $Cbnumbers.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 422 $System_Drawing_Point.Y = 30 $Cbnumbers.Location = $System_Drawing_Point $Cbnumbers.Name = "Cbnumbers" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 24 $System_Drawing_Size.Width = 52 $Cbnumbers.Size = $System_Drawing_Size $Cbnumbers.Tabindex = 6 $Cbnumbers.Text = "123" $Cbnumbers.Usevisualstylebackcolor = $True $Groupbox1.Controls.Add($Cbnumbers) #Special Characters Checkbox $Cbspecial.Checked = $True $Cbspecial.Checkstate = 1 $Cbspecial.Databindings.Defaultdatasourceupdatemode = 0 $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 516 $System_Drawing_Point.Y = 30 $Cbspecial.Location = $System_Drawing_Point $Cbspecial.Name = "Cbspecial" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 24 $System_Drawing_Size.Width = 60 $Cbspecial.Size = $System_Drawing_Size $Cbspecial.Tabindex = 7 $Cbspecial.Text = "%$#" $Cbspecial.Usevisualstylebackcolor = $True $Groupbox1.Controls.Add($Cbspecial) #Results Text Box $Txtresults.Databindings.Defaultdatasourceupdatemode = 0 $Txtresults.Font = New-Object System.Drawing.Font("Courier New", 12, 0, 3, 1) $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 11 $System_Drawing_Point.Y = 17 $Txtresults.Location = $System_Drawing_Point $Txtresults.Name = "Txtresults" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 26 $System_Drawing_Size.Width = 583 $Txtresults.Size = $System_Drawing_Size $Txtresults.Tabindex = 2 $Txtresults.Textalign = 2 $Txtresults.Add_Textchanged($Handler_Txtresults_Textchanged) $Form1.Controls.Add($Txtresults) #Close Button $Btncancel.Databindings.Defaultdatasourceupdatemode = 0 $Btncancel.Font = New-Object System.Drawing.Font("Microsoft Sans Serif", 12.25, 0, 3, 0) $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 358 $System_Drawing_Point.Y = 291 $Btncancel.Location = $System_Drawing_Point $Btncancel.Name = "Btncancel" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 45 $System_Drawing_Size.Width = 110 $Btncancel.Size = $System_Drawing_Size $Btncancel.Tabindex = 1 $Btncancel.Text = "Close" $Btncancel.Usevisualstylebackcolor = $True $Btncancel.Add_Click($Handler_Btncancel_Click) $Form1.Controls.Add($Btncancel) #Generate Buton $Btngenerate.Databindings.Defaultdatasourceupdatemode = 0 $Btngenerate.Font = New-Object System.Drawing.Font("Microsoft Sans Serif", 12.25, 0, 3, 0) $System_Drawing_Point = New-Object System.Drawing.Point $System_Drawing_Point.X = 138 $System_Drawing_Point.Y = 291 $Btngenerate.Location = $System_Drawing_Point $Btngenerate.Name = "Btngenerate" $System_Drawing_Size = New-Object System.Drawing.Size $System_Drawing_Size.Height = 45 $System_Drawing_Size.Width = 115 $Btngenerate.Size = $System_Drawing_Size $Btngenerate.Tabindex = 0 $Btngenerate.Text = "Generate" $Btngenerate.Usevisualstylebackcolor = $True $Btngenerate.Add_Click($Handler_Btngenerate_Click) $Form1.Controls.Add($Btngenerate) #Save Export File Dialog $Savefiledialog1.Createprompt = $True $Savefiledialog1.Filename = "Generated Pw List.Txt" $Savefiledialog1.Initialdirectory = "C:" $Savefiledialog1.Showhelp = $True $Savefiledialog1.Title = "Save To File" #Save The Initial State Of The Form $Initialformwindowstate = $Form1.Windowstate #Init The Onload Event To Correct The Initial State Of The Form $Form1.Add_Load($Onloadform_Statecorrection) #Show The Form $Form1.Showdialog()| Out-Null } #Call The Form Generateform
-
Source is maintained under gwSecurity
Comments