PowerShell can easily provide a range of numbers, but creating them is not that easy – unless you convert ascii codes into characters:
65..90 | Foreach-Object { "$([char]$_):" }
PowerShell can easily provide a range of numbers, but creating them is not that easy – unless you convert ascii codes into characters: