Showing results for ASCII - Scripting Blog [archived]

Dec 12, 2015
0
0

Weekend Scripter: PowerShell ASCII Bar Charts

Doctor Scripto
Doctor Scripto

Summary: Microsoft PFE, Wei Hao Lim, presents a script that creates ASCII bar charts. Microsoft Scripting Guy, Ed Wilson, is here. Today we have a new guest blogger. Please welcome Wei Hao Lim. Wei is a Microsoft PFE from Australia who works primarily with enterprise customers helping to configure, deploy, maintain, and customize System Center impl...

Scripting Guy!Windows PowerShellguest blogger
Nov 8, 2015
0
0

PowerTip: Display Numeric ASCII Value of Letter

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to display the numeric ASCII value of a letter. How can I use Windows PowerShell to find the numeric ASCII value associated with a letter? Use [byte] and [char] together. The following example will display the numeric ASCII value of the capital letter A:[byte][char]'A'

Scripting Guy!Windows PowerShellPowerTip
Nov 5, 2015
0
0

PowerTip: Use PowerShell to Display ASCII Characters

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to display ASCII characters.  How can I use Windows PowerShell to quickly display printable ASCII characters when I am not connected            to the Internet?  Use the range operator to create a range of numbers 1 through 128, pipe it to Foreach-Object (% is th...

Scripting Guy!Windows PowerShellPowerTip
Nov 5, 2015
0
0

Generate Random Letters with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about generating random letters with Windows PowerShell.  Hey, Scripting Guy! I need to generate a string of random letters. These letters need to be five characters long, and they should be either upper case or lower case. I do not need any numbers or special characters. In fact, my strings s...

Scripting Guy!Windows PowerShellgetting started