Showing archive results for October 2014

Oct 8, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Find Information about Object Properties

Doctor Scripto

Summary: Learn how to use Windows PowerShell to find information about object properties.  How can I use Windows PowerShell to look at information about the properties of an object stored in a variable?  Use the PSObject property, and look at the Properties collection, for example: $a = @{} $a.psobject.properties

Scripting Guy!Windows PowerShellPowerTip
Oct 8, 2014
Post comments count0
Post likes count0

Extend the Encode/Decode PowerShell Script

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about extending his ASCII encode/decode Windows PowerShell script. Microsoft Scripting Guy, Ed Wilson, is here. I am a huge advocate of learning by playing around. Maybe that is why I did such a good job back when I was in kindergarten—and why I had such a tough time in high school. Who knows...

Scripting Guy!Windows PowerShellscripting techniques
Oct 7, 2014
Post comments count0
Post likes count0

PowerTip: Put Array of Letters Back into a Word with PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to put an array of letters back together to form a word.  I split a word by converting it to a chararray, and now I want to put it back together.            How can I use Windows PowerShell to do this?  Use the –Join operator to put the characters back toge...

Scripting Guy!Windows PowerShellPowerTip
Oct 7, 2014
Post comments count0
Post likes count0

Converting Words to ASCII Numbers and Back with PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to convert words to ASCII numbers and back again. Microsoft Scripting Guy, Ed Wilson, is here. Today, I am sipping a nice cup of Earl Grey tea with just a little jasmine in it. Along with a cinnamon stick, it is a nice mellow cup. I am checking my email sent to [email protected] on my Surface Pro 3, and pla...

Scripting Guy!Windows PowerShellscripting techniques
Oct 6, 2014
Post comments count0
Post likes count0

PowerTip: Break a Word into Letters with PowerShell

Doctor Scripto

Summary: Learn how to use Windows PowerShell to break a word into letters.  How can I use Windows PowerShell to break a word into letters?  Use the tochararray method, for example: “dog”.tochararray()

Scripting Guy!Windows PowerShellPowerTip