Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Latest commit

 

History

History
44 lines (29 loc) · 922 Bytes

Get-RandomPIN.README.md

File metadata and controls

44 lines (29 loc) · 922 Bytes

Get-RandomPIN

Generate PINs with freely definable number of numbers.

Description

Generate PINs with freely definable number of numbers. You can also set the smallest and greatest possible number.

Screenshot

Syntax

Get-RandomPIN [[-Length] <Int32>] [[-Count] <Int32>] [[-Minimum] <Int32>] [[-Maximum] <Int32>] [<CommonParameters>]

Get-RandomPIN [[-Length] <Int32>] [[-CopyToClipboard]] [[-Minimum] <Int32>] [[-Maximum] <Int32>] [<CommonParameters>]

Example 1

PS> Get-RandomPIN -Length 6

PIN
---
18176072

Example 2

PS> Get-RandomPIN -Length 6 -Count 5 -Minimum 4 -Maximum 8

Count PIN
----- ---
    1 767756
    2 755655
    3 447667
    4 577646
    5 644665