Convert a number to a Roman numeral.
ConvertTo-RomanNumeral.ps1 [-Value] <Int32> [-Unicode] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
ConvertTo-RomanNumeral.ps1 2020
MMXX
ConvertTo-RomanNumeral.ps1 8
VIII
The numeric value to convert into a Roman numeral string.
Type: Int32
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: 0
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Indicates that Unicode Roman numeral characters should be used (U+2160-U+216F).
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
https://www.c-sharpcorner.com/blogs/converting-to-and-from-roman-numerals1